html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000; /* Fallback color */
}

.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 105vh; /* Scale height to 105% */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 105vh;
}

.centered-div {
    position: relative; /* Position relative to body */
    padding: 20px;
    text-align: center;
    z-index: 1; /* Ensure div is on top of the background image */
}
#login-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    }
.login-input {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(254,251,234, 0.6) !important;
    font-size: 16px;
    color: #20050f;
    border: none;
}
.login-input::placeholder {
    opacity: 1;
    color: #9F2547;
}
.login-input:focus {
    outline-width: 0;
    outline:none;
}
#login-button {
    width: 80px;
    height: 35px;
    background-color: rgb(239, 239, 239);
    color: black;
}