/* Application password gate. Shared by index.html and slideshow.html.
   Fonts (Mona Sans / Abril Fatface) are loaded by each page's own stylesheet. */

.ls-auth-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    background: #FFD8D9;
    font-family: 'Mona Sans', sans-serif;
}

.ls-auth-card {
    display: flex;
    flex-direction: column;
    gap: 14px;

    width: 100%;
    max-width: 360px;
    padding: 32px 24px;

    background: #FFEAEA;
    border: 2px solid #ffb2b7;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(53, 25, 19, 0.18);

    text-align: center;
}

.ls-auth-title {
    font-family: 'Abril Fatface', serif;
    font-weight: 400;
    font-size: 32px;
    color: #E05856;
}

.ls-auth-text {
    font-size: 15px;
    line-height: 22px;
    color: #351913;
}

.ls-auth-input {
    width: 100%;
    padding: 14px 16px;

    font-family: inherit;
    font-size: 16px;
    color: #351913;

    background: #ffffff;
    border: 2px solid #ffb2b7;
    border-radius: 12px;
    outline: none;
}

.ls-auth-input:focus { border-color: #E05856; }

.ls-auth-submit {
    width: 100%;
    padding: 14px 16px;

    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;

    background: #E05856;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

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

.ls-auth-error {
    font-size: 14px;
    color: #E05856;
}
