/* Login Page Styles */
.login-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #6c63ff 0%, #3f3d56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    display: inline-block;
    margin-bottom: 20px;
}

.logo-image {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.login-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.login-form {
    margin-top: 30px;
}

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

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c63ff;
    z-index: 1;
}

.form-control {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
    outline: none;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #5651cc;
    transform: translateY(-2px);
}

.login-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
}

.copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.error {
    color: #ff3b3b;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .form-control {
        font-size: 14px;
    }
    
    .login-button {
        padding: 12px;
        font-size: 14px;
    }
}
