<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.auth-description {
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-color);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.auth-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.auth-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2.5rem;
    width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

#registration-form,
#login-form {
    width: 100%;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

/* Fix for number inputs */
input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin: 1rem 0;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    min-height: 40px;
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #d32f2f;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #388e3c;
}

.btn {
    width: 100%;
    margin-top: 1rem;
}

.auth-redirect {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

.auth-redirect a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-redirect a:hover {
    text-decoration: underline;
}

/* Stili per i pulsanti di autenticazione nella navbar */
.auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.auth-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-register {
    background: var(--primary-color);
    color: var(--white);
}

.btn-register:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

/* When the header is scrolled, changed the colors */
.header.scrolled .btn-login {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.header.scrolled .btn-login:hover {
    background: rgba(25, 118, 210, 0.1); /* Light blue background */
}

/* Loader animation */
.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Disable button style */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-container {
        width: 100%;
        padding: 1.5rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 992px) {
    .auth-buttons {
        margin-top: 1rem;
    }
}

/* Stili per la navigazione con utente autenticato */
.user-greeting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-greeting span {
    margin-right: 0.5rem;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header.scrolled .user-greeting span {
    color: var(--primary-color);
}

/* Spazio tra i pulsanti nel container di autenticazione */
.auth-btn + .auth-btn {
    margin-left: 0.5rem;
}

/* Responsive per i pulsanti di auth */
@media (max-width: 768px) {
    .user-greeting {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
    }
    
    .user-greeting a {
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
}</pre></body></html>