.box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    background-color: #cae6e9;
    width: max-content;
    min-width: max-content;
    height: max-content;
    min-height: max-content;
    padding: 1em;
    z-index: 2;
    opacity: 0.8;
    border-radius: 1em;
}

.background-image {
    background-image: url('/static/img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
}

.red_notification {
    color: red;
    max-width: 300px;
    overflow-wrap: break-word;
    padding: 5px;
}

.login_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.email-input {
    margin-bottom: 1em;
    padding: 0.5em;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    text-align: center;
    font-size: 1.2em;
}

.login_btn {
    border: none;
    background: none;
    cursor: pointer;
    color: black;
    font-size: 1.2em;
    padding: 5px 20px;
}

.login_btn img {
    max-width: 4em;
    max-height: 4em;
    padding: 1em;
    transition: transform 0.3s ease;
}

.login_btn img:hover {
    transform: scale(1.1);
}