/* Auth Pages Styles - Clean Centered Design */

.auth-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.auth-form {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-form.auth-form-wide {
    max-width: 480px;
}

.auth-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--ctf-dark);
    margin-bottom: 1rem;
}

.auth-subtitle {
    color: var(--ctf-gray);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form styling */
.auth-form .form-group {
    margin-bottom: 0.85rem;
    text-align: center;
}

.auth-form .form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-align: center;
}

.auth-form .form-control,
.auth-form .form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    text-align: left;
    background-color: #fff;
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

/* Button - using Bootstrap blue */
.auth-form .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.55rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.auth-form .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Checkbox */
.auth-form .form-check {
    text-align: left;
    margin-bottom: 0.75rem;
}

.auth-form .form-check-label {
    font-size: 0.9rem;
    color: #555;
}

/* Validation */
.auth-form .text-danger {
    display: block;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

/* Links */
.auth-links {
    text-align: center;
    margin-top: 1rem;
}

.auth-links a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

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

.auth-links p {
    margin-bottom: 0.4rem;
    color: var(--ctf-gray);
    font-size: 0.9rem;
}

.auth-links p:last-child {
    margin-bottom: 0;
}

/* Status icons */
.auth-status-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.auth-status-icon.success { color: #28a745; }
.auth-status-icon.error { color: #dc3545; }
.auth-status-icon.info { color: #0d6efd; }

/* Team options */
.team-options {
    margin: 1.25rem 0;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    background: #fafafa;
}

.team-options h6 {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.team-options > p {
    text-align: center;
}

.team-options .form-check {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.team-options .form-check-label strong {
    color: #333;
    font-size: 0.9rem;
}

.team-options .form-check-label small {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-title {
        font-size: 1.75rem;
    }
    
    .auth-form {
        max-width: 100%;
    }
}
