﻿/* =====================================
   LOGIN PAGE BASE
===================================== */
.login-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #faf9f7, #ffffff);
    font-family: 'Inter', sans-serif;
}

/* =====================================
   LOGIN CARD
===================================== */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 34px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    text-align: center;
}

/* =====================================
   LOGO
===================================== */
.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111;
}

    .login-logo .dot {
        font-size: 22px;
    }

.brand-name {
    letter-spacing: 0.3px;
}

/* =====================================
   HEADINGS
===================================== */
.login-card h1 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.sub-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

/* =====================================
   FORM
===================================== */
.form-group {
    text-align: left;
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
    }

    .form-group input {
        width: 100%;
        padding: 13px 14px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        font-size: 14px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: #ff7a18;
            box-shadow: 0 0 0 3px rgba(255,122,24,0.15);
        }

/* =====================================
   OPTIONS
===================================== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
}

.forgot {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

/* =====================================
   BUTTON
===================================== */
.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff7a18, #ff9a3d);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(255,122,24,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 45px rgba(255,122,24,0.6);
    }

/* =====================================
   SIGNUP TEXT
===================================== */
.signup-text {
    margin-top: 22px;
    font-size: 14px;
    color: #555;
}

    .signup-text a {
        color: #ff7a18;
        font-weight: 600;
        text-decoration: none;
    }

/* =====================================
   MOBILE
===================================== */
@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }

        .login-card h1 {
            font-size: 22px;
        }
}
/* =====================================
   PASSWORD TOGGLE (EYE ICON)
===================================== */
.password-wrapper {
    position: relative;
}

    /*.password-wrapper input {
        padding-right: 44px;*/ /* space for eye */
    /*}*/

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 27px;
    color: #666;
    padding: 4px;
}

    .toggle-password:hover {
        color: #ff7a18;
    }
