/* Authentication Pages Styles */

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f1e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.auth-body::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.auth-body::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
}

.auth-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 1.5rem;
}

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

.auth-form label {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 0.6rem;
}

.auth-form input {
    background-color: rgba(15, 15, 30, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #e0e0e0;
    padding: 0.9rem;
    font-size: 0.95rem;
}

.auth-form input::placeholder {
    color: #666;
}

.auth-form input:focus {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background-color: rgba(15, 15, 30, 0.8);
}

.auth-form .btn {
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-form .btn:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 1.5rem;
}

.auth-footer p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-footer a {
    color: #00d4ff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: #00a8cc;
    text-decoration: none;
}

/* Alert Styles */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    animation: alertSlide 0.3s ease-out;
}

@keyframes alertSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background-color: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00d084;
}

.alert-danger {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6666;
}

.alert-warning {
    background-color: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffb84d;
}

.alert-info {
    background-color: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.alert-icon {
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .auth-form input,
    .auth-form .btn {
        font-size: 16px;
    }
}
