.popup_modal {
    position: fixed;
    /* Fixed positioning */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: var(--color-popup-background);
    /* Black background with opacity */
    z-index: 900;
    /* Above other content */
    box-sizing: border-box;
}

.popup_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centering trick */
    padding: 20px;
    padding-bottom: 10px;
    background-color: var(--color-popup);
    border-radius: 10px;

    box-sizing: border-box;
    width: min-content;
    min-width: 220px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.popup_modal_content input {
    margin-top: 1px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #a3a3a3;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 8px;
}

.popup_modal_content label {
    margin-top: 0px;
    margin-left: 6px;
    display: inline-block;
}

.popup_modal_responses {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.popup_modal_responses_centered {
    margin-left: auto !important;
    margin-right: auto !important;
}

#login_modal_forgot_password_button {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;

    background: none;
    border: none;
    padding: 0;
    color: rgba(0, 0, 63, 0.623);
    /* You can choose any color you like */
    /*text-decoration: underline;*/
    cursor: pointer;
    font-size: small;
}

#login_modal_forgot_password_button:hover {
    color: rgb(0, 0, 0);
}

#login_error_message {
    color: rgba(255, 0, 0, 0.623);
    margin: 0px;
    padding: 0px;
}

#login_success_message {
    margin-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
    font-size: 32px;
    text-align: center;
}