.modal-login {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 200;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
}


/* Modal Content/Box */

.modal-content-login {
    background-color: #fefefe;
    margin: 2% auto;
    /* 2% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 35%;
    /* Could be more or less, depending on screen size */
    height: 90%;
}

.login-noti:hover {
    font-weight: bold;
    color: white;
}


/* The Close Button */

.close-login {
    color: #aaa;
    z-index: 1;
    font-size: 28px;
    font-weight: bold;
    margin-left: 98%;
    margin-top: -15px;
}

.close-login:hover,
.close-login:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.login-button-modal {
    width: 100%;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .modal-content-login {
        width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .modal-content-login {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .modal-content-login {
        width: 90%;
    }
}