/* Auth Styles - Dark Theme */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

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

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

.auth-box {
    background: rgba(15, 15, 25, 0.85);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    animation: slideUp 0.6s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

.auth-header p {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 300;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #ffc107;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 193, 7, 0.02);
    color: #e0e0e0;
}

.form-control::placeholder {
    color: #808080;
}

.form-control:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: rgba(255, 193, 7, 0.05);
}

.form-control.is-invalid {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.error-text {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-danger {
    background: rgba(255, 107, 107, 0.15);
    color: #ff9999;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.auth-footer p {
    margin: 10px 0;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .auth-box {
        padding: 25px;
    }

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

    .auth-form {
        gap: 15px;
    }
}
