.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    padding: 1rem;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-header {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.login-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    z-index: 1;
}

.login-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 1;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    z-index: 1;
}

.login-body {
    padding: 2.5rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.text-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.text-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 40px;
    color: #6c757d;
    font-size: 1rem;
}

.input-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me label {
    color: #495057;
    font-size: 0.9rem;
}

.primary-button {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: white !important;
    border: none !important;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.forgot-password {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.forgot-password a {
    color: #3498db;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #2ecc71;
    text-decoration: underline;
}