/* Login Overlay Styles */
.login-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4A503D;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.login-box {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.login-title {
    font-family: 'Bizantheum', sans-serif;
    font-size: 48px;
    color: #FAF2DA;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-instruction {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: #FAF2DA;
    margin-bottom: 30px;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #FAF2DA;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    color: #4A503D;
    background-color: #FAF2DA;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.login-input:focus {
    outline: none;
    border-color: #E28F83;
    box-shadow: 0 0 0 0.2rem rgba(226, 143, 131, 0.25);
}

.login-input::placeholder {
    color: #8E9775;
    opacity: 0.7;
}

.login-message {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 20px;
    color: #FAF2DA;
}

.login-message.error {
    color: #E28F83;
    font-weight: 600;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #E28F83;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #FAF2DA;
    color: #4A503D;
}

.login-button:active {
    transform: scale(0.98);
}
