/* =========================================================
   RYNA WOMAN - FORGOT PASSWORD
========================================================= */

.forgot-password-page,
.forgot-password-page *,
.forgot-password-page *::before,
.forgot-password-page *::after {
    box-sizing: border-box;
}


.forgot-password-page {
    width: 100%;
    min-height: 470px;

    background: #fff5f7;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   SECTION
========================================================= */

.forgot-password-section {
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 60px 20px 100px;
}


/* =========================================================
   FORM BOX
========================================================= */

.forgot-password-box {
    width: 100%;
    max-width: 360px;

    margin: 0 auto;
}


/* =========================================================
   TITLE
========================================================= */

.forgot-password-box h1 {
    margin: 0 0 9px;

    color: #171412;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 400;

    line-height: 1.25;
}


/* =========================================================
   SUBTITLE
========================================================= */

.forgot-password-subtitle {
    margin: 0 0 24px;

    color: #918783;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.forgot-password-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 11px;
}


/* =========================================================
   INPUT
========================================================= */

.forgot-password-form input {
    width: 100%;
    height: 42px;

    padding: 0 13px;

    border: 1px solid #ded9d7;
    border-radius: 0;

    outline: none;

    background: #ffffff;
    color: #292522;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 400;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.forgot-password-form input::placeholder {
    color: #9d9692;
    opacity: 1;
}


.forgot-password-form input:focus {
    border-color: #aaa19d;

    background: #ffffff;

    box-shadow:
        0 0 0 2px rgba(170, 161, 157, 0.08);
}


/* =========================================================
   RESET BUTTON
========================================================= */

.forgot-password-button {
    width: 100%;
    height: 42px;

    margin-top: 1px;

    border: 1px solid #171514;
    border-radius: 0;

    outline: none;

    background: #171514;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}


.forgot-password-button:hover {
    background: #2b2826;
    border-color: #2b2826;
}


.forgot-password-button:active {
    background: #11100f;

    transform: translateY(1px);
}


/* =========================================================
   MESSAGES
========================================================= */

.forgot-message {
    width: 100%;

    margin: 0 0 16px;

    padding: 11px 12px;

    font-size: 11px;

    line-height: 1.5;
}


.forgot-error {
    background: #fff0f0;

    border: 1px solid #efd0d0;

    color: #a33b3b;
}


.forgot-success {
    background: #f1f8f1;

    border: 1px solid #d1e4d1;

    color: #477247;
}


/* =========================================================
   LINKS
========================================================= */

.forgot-password-links {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-top: 17px;
}


.forgot-password-links a {
    color: #77706c;

    font-size: 11px;

    text-decoration: underline;

    text-underline-offset: 2px;

    transition: color 0.2s ease;
}


.forgot-password-links a:hover {
    color: #22201e;
}


/* =========================================================
   LOGIN BUTTON AFTER SUCCESS
========================================================= */

.forgot-login-button {
    display: flex;

    width: 100%;
    height: 42px;

    align-items: center;
    justify-content: center;

    background: #171514;
    color: #ffffff;

    border: 1px solid #171514;
    border-radius: 0;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 500;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.forgot-login-button:hover {
    background: #2b2826;
    border-color: #2b2826;

    color: #ffffff;
}


/* =========================================================
   MOBILE
   360px - 767px
========================================================= */

@media (max-width: 767px) {

    .forgot-password-page {
        min-height: 500px;
    }


    .forgot-password-section {
        padding: 45px 18px 70px;
    }


    .forgot-password-box {
        max-width: 330px;
    }


    .forgot-password-box h1 {
        font-size: 24px;
    }


    .forgot-password-subtitle {
        font-size: 11px;

        margin-bottom: 21px;
    }


    .forgot-password-form {
        gap: 10px;
    }


    .forgot-password-form input {
        height: 42px;

        font-size: 11px;
    }


    .forgot-password-button,
    .forgot-login-button {
        height: 42px;

        font-size: 11px;
    }


    .forgot-message {
        font-size: 10px;
    }


    .forgot-password-links a {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   320px - 359px
========================================================= */

@media (max-width: 359px) {

    .forgot-password-section {
        padding: 38px 14px 60px;
    }


    .forgot-password-box {
        max-width: 290px;
    }


    .forgot-password-box h1 {
        font-size: 22px;
    }


    .forgot-password-subtitle {
        font-size: 10px;

        margin-bottom: 19px;
    }


    .forgot-password-form {
        gap: 9px;
    }


    .forgot-password-form input {
        height: 39px;

        font-size: 10px;
    }


    .forgot-password-button,
    .forgot-login-button {
        height: 40px;

        font-size: 10px;
    }


    .forgot-password-links {
        flex-direction: column;

        gap: 9px;

        align-items: center;
    }


    .forgot-password-links a {
        font-size: 10px;
    }
}


/* =========================================================
   TABLET
   768px - 1023px
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {

    .forgot-password-section {
        padding-top: 55px;
    }


    .forgot-password-box {
        max-width: 350px;
    }


    .forgot-password-box h1 {
        font-size: 26px;
    }


    .forgot-password-form input {
        height: 43px;

        font-size: 12px;
    }


    .forgot-password-button,
    .forgot-login-button {
        height: 43px;
    }
}


/* =========================================================
   LAPTOP
   1024px - 1439px
========================================================= */

@media (min-width: 1024px) and (max-width: 1439px) {

    .forgot-password-section {
        padding-top: 55px;
    }


    .forgot-password-box {
        max-width: 360px;
    }
}


/* =========================================================
   LARGE LAPTOP
   1440px - 1919px
========================================================= */

@media (min-width: 1440px) and (max-width: 1919px) {

    .forgot-password-section {
        padding-top: 60px;

        padding-bottom: 100px;
    }


    .forgot-password-box {
        max-width: 370px;
    }


    .forgot-password-box h1 {
        font-size: 28px;
    }


    .forgot-password-subtitle {
        font-size: 12px;
    }


    .forgot-password-form input {
        height: 43px;
    }


    .forgot-password-button,
    .forgot-login-button {
        height: 43px;
    }
}


/* =========================================================
   DESKTOP
   1920px AND ABOVE
========================================================= */

@media (min-width: 1920px) {

    .forgot-password-section {
        padding-top: 70px;

        padding-bottom: 110px;
    }


    .forgot-password-box {
        max-width: 380px;
    }


    .forgot-password-box h1 {
        font-size: 30px;
    }


    .forgot-password-subtitle {
        font-size: 13px;
    }


    .forgot-password-form input {
        height: 45px;

        font-size: 12px;
    }


    .forgot-password-button,
    .forgot-login-button {
        height: 45px;

        font-size: 12px;
    }


    .forgot-password-links a {
        font-size: 12px;
    }
}