/* ================================
   RESERVATION LOGIN PAGE
================================ */

.reservation-login-page {
    margin-left: 250px;
    width: calc(100% - 250px);
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
}

/* LOGIN BOX */

.reservation-login-box {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* TITLE */

.reservation-login-box h1 {
    font-family: 'CinzelCustom', serif;
    font-weight: 400;
    color: #B09E80;
    margin-bottom: 20px;
}

/* INPUTS */

.reservation-login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;

    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-family: 'AvenirLight', sans-serif;

    box-sizing: border-box;
}

/* BUTTON */

.reservation-login-box button {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;

    border-radius: 6px;
    border: 1px solid #B09E80;

    background: #e9e9e9;
    color: #716551;

    font-family: 'CinzelCustom', serif;
    cursor: pointer;
    transition: all 0.25s ease;

    box-sizing: border-box;
}

.reservation-login-box button:hover {
    background: #716551;
    color: #e9e9e9;
}

/* ERROR */

#errorMsg {
    margin-top: 12px;
    color: #c33;
    font-size: 0.9rem;
}

/* INFO TEXT */

.reservation-login-info {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;

    font-family: 'AvenirLight', sans-serif;
    font-size: 0.92rem;
    color: #716551;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 768px) {
    .reservation-login-page {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
}
