/* Authentication Pages CSS */

#auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#auth .row {
    width: 100%;
    margin: 0;
}

#auth-left {
    padding: 3rem 2.5rem;
}

.auth-logo {
    margin-bottom: 2rem;
}

.auth-logo img {
    height: 48px;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #25396f;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

#auth-right {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

#auth-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Form styling */
.form-control {
    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(67, 94, 190, 0.1);
}

.form-control-xl {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

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

.form-check-label {
    font-size: 0.9rem;
}

.invalid-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    #auth-left {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 2rem;
    }
}
