/* Stili per le pagine di autenticazione */

.auth-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-actions button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #22c55e;
    color: #15803d;
} 