/* Custom styles for authentication pages (login, register, etc.) */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    margin: 2rem;
    color: white;
}

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

.auth-logo {
    max-width: 400px;
    max-height: 160px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
}

.auth-header h1 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #ccc;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #87ceeb;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.form-label {
    color: white;
    font-weight: 500;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Future registration section styling */
.future-feature {
    opacity: 0.6;
    pointer-events: none;
}

.coming-soon {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
