/* Reset e Base */
body { 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    background: #f0f2f5; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    margin: 0; 
    padding: 20px;
    box-sizing: border-box;
}

/* Container Principale (basato su Login 2) */
.auth-container { 
    background: white; 
    padding: 35px 25px; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    width: 100%; 
    max-width: 400px; 
    text-align: center; 
    box-sizing: border-box;
}

/* Logo e Titoli */
.auth-container h2 { 
    color: #d35400; 
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.logohome {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

/* Messaggi di Errore */
.error-msg { 
    color: #c0392b; 
    background: #f8d7da; 
    padding: 12px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    font-size: 14px; 
    border: 1px solid #f5c6cb;
}

/* Form e Input (Uniformati a Login 2) */
.auth-form input { 
    width: 100%; 
    padding: 15px; 
    margin: 12px 0; 
    border: 2px solid #eee; 
    border-radius: 8px; 
    box-sizing: border-box; 
    font-size: 16px; /* Evita lo zoom automatico su iOS */
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: #e67e22;
    outline: none;
}

/* Input specifico per OTP (Grande come in Login 2) */
.auth-form input.otp-input {
    font-size: 32px;
    letter-spacing: 8px;
    text-align: center;
    font-weight: bold;
}

/* Bottone (Stile Login 2 ma colore SeeChef) */
.btn-auth { 
    width: 100%; 
    padding: 16px; 
    background: #e67e22; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: bold; 
    font-size: 16px;
    transition: background 0.3s, transform 0.1s;
    margin-top: 15px;
}

.btn-auth:hover { 
    background: #d35400; 
}

.btn-auth:active {
    transform: scale(0.98);
}

/* Footer link */
.auth-footer { 
    margin-top: 20px; 
}

.auth-footer a { 
    color: #d35400; 
    text-decoration: none; 
    font-size: 14px;
}