/* =====================================
   SATRUPA AUTH PAGE
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;

    background: #f8f6f3;

    color: #2c2c2c;
}


/* =====================================
   MAIN PAGE
===================================== */

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

    display: grid;

    grid-template-columns: 1fr 1fr;
}


/* =====================================
   LEFT BRAND SECTION
===================================== */

.brand-section {
    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(135deg,
            rgba(58, 73, 33, .98),
            rgba(45, 56, 26, .98));

    display: flex;

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

    padding: 60px;
}

.brand-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, .18);

    top: -140px;
    left: -140px;
}

.brand-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, .15);

    bottom: -120px;
    right: -100px;
}

.brand-content {
    position: relative;

    max-width: 470px;

    color: #fff;

    z-index: 2;
}

.brand-logo {
    color: #3D4B2A;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 25px;
}

.brand-line {
    width: 55px;
    height: 3px;

    background: #3D4B2A;

    margin-bottom: 30px;
}

.brand-content h1 {
    font-size: 58px;

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -1px;

    margin-bottom: 25px;
}

.brand-content p {
    max-width: 410px;

    color: rgba(255, 255, 255, .72);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.brand-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    border: 1px solid rgba(212, 175, 55, .35);

    border-radius: 30px;

    color: #3D4B2A;

    font-size: 13px;

    background: rgba(212, 175, 55, .06);
}

.brand-badge i {
    font-size: 13px;
}


/* =====================================
   LOGIN SECTION
===================================== */

.login-section {
    min-height: 100vh;

    display: flex;

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

    padding: 45px;
}

.auth-card {
    width: 100%;

    max-width: 460px;

    background: #fff;

    padding: 42px;

    border-radius: 24px;

    border: 1px solid #ececec;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);
}


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

.mobile-logo {
    display: none;

    text-align: center;

    color: #3D4B2A;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;
}


/* =====================================
   AUTH ICON
===================================== */

.auth-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;

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

    background: #f5f3e9;

    color: #3D4B2A;

    font-size: 22px;

    margin-bottom: 22px;
}


/* =====================================
   TITLE
===================================== */

.small-title {
    display: block;

    color: #3D4B2A;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.auth-title h2 {
    color: #2c2c2c;

    font-size: 29px;

    line-height: 1.25;

    margin-bottom: 8px;
}

.auth-title p {
    color: #888;

    font-size: 13px;

    margin-bottom: 30px;
}


/* =====================================
   INPUT GROUP
===================================== */

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;

    color: #444;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;

    display: flex;

    align-items: center;
}

.input-wrapper>i {
    position: absolute;

    left: 15px;

    color: #999;

    font-size: 15px;

    pointer-events: none;
}

.input-wrapper input {
    width: 100%;

    height: 50px;

    border: 1px solid #ddd;

    border-radius: 11px;

    outline: none;

    padding: 0 45px;

    color: #333;

    background: #fff;

    font-size: 14px;

    transition: .25s ease;
}

.input-wrapper input::placeholder {
    color: #aaa;
}

.input-wrapper input:focus {
    border-color: #3D4B2A;

    box-shadow:
        0 0 0 4px rgba(58, 73, 33, .09);
}


/* =====================================
   PASSWORD TOGGLE
===================================== */

.password-toggle {
    position: absolute;

    right: 10px;

    width: 35px;
    height: 35px;

    border: none;

    background: transparent;

    color: #999;

    cursor: pointer;

    border-radius: 8px;

    transition: .2s;
}

.password-toggle:hover {
    background: #f4f4f4;

    color: #3D4B2A;
}


/* =====================================
   OPTIONS
===================================== */

.login-options {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    margin: 5px 0 25px;
}

.remember-me {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #777;

    font-size: 12px;

    cursor: pointer;
}

.remember-me input {
    accent-color: #3D4B2A;

    cursor: pointer;
}

.forgot-password {
    color: #3D4B2A;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;
}

.forgot-password:hover {
    color: #3D4B2A;
}


/* =====================================
   LOGIN BUTTON
===================================== */

.auth-btn {
    width: 100%;

    height: 52px;

    border: none;

    border-radius: 11px;

    background: #3D4B2A;

    color: #fff;

    display: flex;

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

    gap: 12px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}

.auth-btn:hover {
    background: #2d381a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(58, 73, 33, .20);
}

.auth-btn i {
    transition: .25s ease;
}

.auth-btn:hover i {
    transform: translateX(4px);
}

.auth-btn:active {
    transform: translateY(0);
}


/* =====================================
   DIVIDER
===================================== */

.auth-divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #eee;
}

.auth-divider span {
    color: #aaa;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =====================================
   FOOTER
===================================== */

.auth-footer {
    text-align: center;

    color: #888;

    font-size: 13px;
}

.auth-footer a {
    color: #3D4B2A;

    font-weight: 700;

    text-decoration: none;

    margin-left: 4px;
}

.auth-footer a:hover {
    color: #3D4B2A;
}


/* =====================================
   SECURITY NOTE
===================================== */

.secure-note {
    display: flex;

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

    gap: 7px;

    color: #aaa;

    font-size: 11px;

    margin-top: 22px;
}

.secure-note i {
    color: #3D4B2A;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .auth-page {
        grid-template-columns: 1fr;
    }

    .brand-section {
        display: none;
    }

    .login-section {
        min-height: 100vh;

        padding: 25px;
    }

    .mobile-logo {
        display: block;
    }

}


@media (max-width: 500px) {

    .login-section {
        padding: 15px;
    }

    .auth-card {
        padding: 28px 22px;

        border-radius: 20px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, .07);
    }

    .auth-icon {
        width: 52px;
        height: 52px;
    }

    .auth-title h2 {
        font-size: 25px;
    }

    .login-options {
        align-items: flex-start;
    }

}