/* =====================================================================
   ARISE — Auth pages (Shield: login / register / magic-link)
   Ελάχιστο, αυτόνομο CSS. Δεν εξαρτάται από custom properties άλλων
   αρχείων ώστε να μη σπάσει αν αλλάξουν αλλού.
   ===================================================================== */

.auth-page {
    display: flex;
    justify-content: center;
    padding: 64px 16px 96px;
}

.auth-section {
    width: 100%;
    max-width: 600px;
}

.auth-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
}

.auth-card--message {
    text-align: center;
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.auth-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

.auth-message-strong {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.4;
}

.auth-form .form-control:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 1px;
    border-color: #1e3a8a;
}

.auth-form .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-form .form-check-input {
    width: 18px;
    height: 18px;
}

.auth-submit {
    width: 100%;
    padding: 13px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #1e3a8a;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.auth-submit:hover,
.auth-submit:focus {
    background: #16296b;
}

.auth-alt-link {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 18px;
    color: #4b5563;
}

.auth-alt-link a {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.auth-alt-link a:hover,
.auth-alt-link a:focus {
    text-decoration: underline;
}

.auth-form .alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Μεγαλύτερα touch targets & εστίαση — συμβατό με τον accessibility toolbar
   (font-size scaling μέσω acctoolbar.min.js δεν επηρεάζεται, χρησιμοποιεί
   relative μονάδες στο :root) */
@media (max-width: 480px) {
    .auth-card {
        padding: 28px 20px;
    }
}