/* ==========================================
   AUTH PAGE (Login / Register)
========================================== */

.auth-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 5%;

    background: #fafafa;

    box-sizing: border-box;
}

.auth-container {
    width: 100%;
    max-width: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* LOGO */

.auth-logo {
    margin-bottom: 30px;

    color: #111111;

    text-decoration: none;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: 3px;
}

.auth-logo span {
    color: #b88b4a;
}


/* CARD */

.auth-card {
    width: 100%;

    padding: 40px 35px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 4px;

    box-sizing: border-box;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}


/* HEADING */

.auth-heading {
    margin-bottom: 30px;

    text-align: center;
}

.auth-heading p {
    margin: 0 0 8px;

    color: #b88b4a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.auth-heading h1 {
    margin: 0 0 10px;

    color: #111111;

    font-size: 26px;
    font-weight: 700;
}

.auth-heading span {
    color: #777777;

    font-size: 13px;
    line-height: 1.5;
}


/* FORM */

#loginForm,
#registerForm {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #333333;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.form-group input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dddddd;
    border-radius: 3px;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    box-sizing: border-box;

    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;

    border-color: #111111;
}

.form-group input::placeholder {
    color: #aaaaaa;
}


/* ERROR MESSAGE */

.auth-error {
    margin: 0;

    min-height: 16px;

    color: #d13c3c;

    font-size: 12px;
    line-height: 1.5;
}


/* SUBMIT BUTTON */

.auth-submit {
    width: 100%;

    padding: 14px;

    border: none;
    border-radius: 3px;

    background: #111111;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.auth-submit:hover {
    opacity: 0.85;
}

.auth-submit:disabled {
    opacity: 0.6;

    cursor: not-allowed;
}


/* FOOTER LINK */

.auth-footer {
    margin-top: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    font-size: 13px;
}

.auth-footer span {
    color: #777777;
}

.auth-footer a {
    color: #111111;

    text-decoration: none;

    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 480px) {

    .auth-page {
        padding: 30px 5%;
    }

    .auth-logo {
        font-size: 20px;

        letter-spacing: 2.5px;
    }

    .auth-card {
        padding: 30px 22px;
    }

    .auth-heading h1 {
        font-size: 22px;
    }

    .form-group input {
        padding: 12px 13px;

        font-size: 16px;
    }

}
body{background:#fbfaf8}.auth-page{min-height:auto!important;padding:70px 20px 100px!important}.auth-logo{display:none!important}.auth-card{border:1px solid #e9e4de!important;border-radius:0!important;box-shadow:0 20px 60px rgba(29,27,25,.06)!important;background:#fff!important}.auth-heading p{color:#9a4f43!important;letter-spacing:.25em!important}.auth-heading h1{font-family:Georgia,"Times New Roman",serif!important;font-weight:400!important}.auth-submit{background:#1d1b19!important;border-radius:0!important;letter-spacing:.15em}.auth-submit:hover{background:#9a4f43!important}.auth-global-footer{margin-top:0!important}
