/* Abbozzo area riservata clienti — palette sobria, coerente con PsAgenda */
* { box-sizing: border-box; margin: 0; }

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: linear-gradient(160deg, #eef3f8, #dde7f0);
    min-height: 100vh;
    color: #24313f;
}

.cornice {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.scheda {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(20, 40, 70, .14);
    padding: 2rem 2.2rem;
    width: 100%;
    max-width: 420px;
}

.marchio { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.6rem; }
.logo {
    width: 52px; height: 52px; border-radius: 12px;
    background: #1565c0; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.25rem; letter-spacing: .5px;
}
h1 { font-size: 1.25rem; }
.sotto { color: #5b6a7a; font-size: .85rem; }

form { display: flex; flex-direction: column; gap: .9rem; }
label { font-size: .85rem; color: #40505f; display: flex; flex-direction: column; gap: .3rem; }
input {
    padding: .65rem .8rem; border: 1px solid #c4d0dc; border-radius: 8px;
    font-size: 1rem; outline: none;
}
input:focus { border-color: #1565c0; box-shadow: 0 0 0 3px rgba(21, 101, 192, .15); }

button {
    padding: .7rem; border: none; border-radius: 8px; cursor: pointer;
    background: #1565c0; color: #fff; font-size: 1rem; font-weight: 600;
}
button:hover { background: #0f4fa0; }
button:disabled { opacity: .6; cursor: default; }
button.secondario { background: #e8eef5; color: #24313f; margin-top: 1.2rem; }
button.secondario:hover { background: #d9e3ee; }

.errore { color: #c62828; font-size: .9rem; }
.pie { margin-top: 1.5rem; font-size: .8rem; color: #5b6a7a; line-height: 1.5; }
.pie a { color: #1565c0; }

.segnaposto {
    background: #f4f8fc; border: 1px dashed #b9c9d9; border-radius: 10px;
    padding: 1.2rem; line-height: 1.6; font-size: .95rem;
}
