/* Authentication Pages Styling */
.auth-container {
    max-width: 500px;
    margin: 4rem auto;
    padding: 2.5rem;
    background: linear-gradient(145deg, #111111 0%, #1c1c1c 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #e2c155 100%);
}

.auth-container h1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.auth-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    border-left: 3px solid;
}

.auth-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border-left-color: #dc3545;
}

.auth-message.info {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border-left-color: #0dcaf0;
}

.auth-message.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-left-color: #ffc107;
}

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

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
    font-size: 1rem;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.auth-form .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

.auth-form .form-group small ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.auth-form .form-group .error-text {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.auth-form .form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.auth-form button {
    padding: 0.75rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e2c155 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.auth-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.auth-form button:active {
    transform: translateY(0);
}

.auth-form button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.auth-form button:hover::after {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.auth-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
    color: #e2c155;
}

.auth-links p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.auth-separator {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.auth-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
}

.auth-separator span {
    position: relative;
    padding: 0 1rem;
    background: linear-gradient(145deg, #111111 0%, #1c1c1c 100%);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-auth {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    color: var(--text-color);
    font-size: 1.2rem;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.social-btn.google:hover {
    color: #DB4437;
}

.social-btn.facebook:hover {
    color: #4267B2;
}

.social-btn.twitter:hover {
    color: #1DA1F2;
}

/* Responsive Design */
@media (max-width: 576px) {
    .auth-container {
        margin: 2rem auto;
        padding: 1.5rem;
    }

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

    .auth-form button {
        width: 100%;
    }
} 