.auth-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.auth-modal-overlay.is-open {
    display: flex;
}

.auth-modal {
    position: relative;
    background: var(--beige);
    border-radius: 12px;
    padding: 32px;
    max-width: 560px;
    width: 90%;
    text-align: center;
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--brun-nuit);
}

.auth-modal-title {
    margin-bottom: 20px;
}
