/* Brand variables are now sourced from brand-identity.css */

body {
    background: var(--bg-gradient) !important;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

.auth-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .auth-card-glass {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
}

.btn-brand-primary {
    background-color: var(--brand-primary) !important;
    color: #ffffff !important;
    border-radius: 0.75rem !important;
    padding: 0.875rem 1.5rem !important;
    font-weight: 700 !important;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-brand-primary:hover {
    background-color: var(--brand-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--brand-shadow);
}

.form-control {
    border-radius: 0.75rem !important;
    padding: 0.875rem 1.25rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #4b5563 !important;
}

[data-bs-theme="dark"] .form-control {
    color: #e2e8f0 !important;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contentore-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}
