/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, #1E5631 0%, #2D5A27 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.logo-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.login-form .form-control {
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
}

/* Welcome Card Styles */
.welcome-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.welcome-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Password Toggle Styles */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-input-group {
    position: relative;
}