/* ---------------- LOGIN SECTION ---------------- */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh; /* full viewport height */
    background-color: #f9f9f9;
    padding: 20px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background-color: #fff;
    padding: 50px 45px;     /* Increased padding */
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12); /* Slightly stronger shadow */
    max-width: 500px;       /* Wider box */
    width: 100%;
    text-align: center;
}

.login-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;        /* Larger heading */
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.login-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;        /* Slightly larger paragraph */
    color: #555;
    margin-bottom: 35px;
}


/* Password Wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px; /* space for icon */
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    transition: 0.3s ease;
}

.toggle-password:hover {
    color: #fbbf24;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 25px;    /* More spacing between fields */
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #111;
    font-size: 14px;
}

.form-group input {
    padding: 14px 15px;     /* Larger input height */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;        /* Slightly bigger text */
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;    /* More spacing below */
}

.forgot-password a {
    font-size: 14px;        /* Slightly bigger */
    color: #fbbf24;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-password a:hover {
    color: #e6ac00;
}

.login-form-btn {
    width: 100%;
    padding: 14px 0;        
    background-color: #fbbf24;
    color: #fff;
    font-size: 17px;        
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form-btn:hover {
    background-color: #e6ac00;
}

.signup-link {
    margin-top: 25px;       /* More spacing */
    font-size: 14px;
    color: #555;
}

.signup-link a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    color: #e6ac00;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        padding: 40px 25px;
        max-width: 100%;
    }

    .login-box h2 {
        font-size: 28px;
    }

    .login-box p {
        font-size: 14px;
    }

    .btn-login {
        font-size: 16px;
    }
}
