/* Unified CSS for login/register - works on both localhost and shared hosting */

/* Import existing styles */
@import url('bootstrap/css/bootstrap.min.css');
@import url('css/alfa.css');

/* Login/Register specific styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    max-width: 280px;
    height: auto;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
}

.auth-form .btn-primary {
    background: linear-gradient(95deg, #4f46e5, #6d28d9);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    color: #3730a3;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .auth-logo img {
        max-width: 200px;
    }
}
