﻿/*Forgot Password Page*/

html {
    font-size: 16px;
}

body {
    padding: 0;
    background-color: #F7F7F7 !important;
}

.body-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.forgotPasswordContainer {
    display: flex;
    padding: 3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    border-radius: 0.5rem;
    background: #FFF;
    width: 27.8rem;

    /* XLarge */
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.forgotPasswordContainer__element {
    margin-top: 1.5rem;
}

.forgotPasswordContainer__logo {
    width: 11.1rem;
}

.contactUs {
    color: var(--Brand-100, #EB8435);
    text-decoration: underline;
}

    .contactUs:hover {
        color: var(--Brand-100, #EB8435);
        cursor: pointer;
    }
