/* Custom Microsoft Login — Login Page Styles */

/* ── Separatore ─────────────────────────────────────────────────────────── */
.odm-login-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
    color: #aaa;
    font-size: .8rem;
}
.odm-login-separator::before,
.odm-login-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* ── Pulsante Microsoft ──────────────────────────────────────────────────── */
.odm-login-ms-wrap {
    text-align: center;
    margin-bottom: 20px;
}
.odm-login-ms-wrap--inline {
    margin: 16px 0;
}

.odm-login-ms-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    color: #5e5e5e;
    font-size: .9rem;
    font-family: "Segoe UI", -apple-system, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s, box-shadow .15s;
    white-space: nowrap;
}
.odm-login-ms-btn:hover,
.odm-login-ms-btn:focus {
    background: #f3f3f3;
    border-color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    color: #333;
    text-decoration: none;
    outline: none;
}
.odm-login-ms-btn:active {
    background: #e8e8e8;
}

.odm-ms-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Messaggio di errore OAuth ───────────────────────────────────────────── */
.odm-login-error {
    background: #fce8e8;
    border: 1px solid #dc3545;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 16px;
    color: #721c24;
    font-size: .85rem;
    line-height: 1.5;
}
.odm-login-error strong {
    display: block;
    margin-bottom: 3px;
}
