@media (min-width: 991px) {
    .form-flex .form-item {
        padding-right: 10px;
        padding-left: 10px;
    }
    .box-register {
        width: 100%;
        border-radius: 10px;
        background-color: #1192b988;
        margin-bottom: 20px;
        padding: 15px;
    }
    .box-register h6 {
        color: white;
        font-size: 18px;
    }
    .box-register a {
        /* text-decoration: none; */
        font-size: 18px;
        color: white;
        font-weight: 700;
    }
    .form-item a {
        background: -webkit-linear-gradient(180deg, #1192b9 0%, #00d6e4 100%);
        border-radius: 35px;
        height: 45px;
        cursor: pointer !important;
        color: white !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        margin-top: 20px;
        font-size: 18px;
        width: 100px;
        padding-top: 5px;
    }
}

@media (max-width: 991px) {
    .form-flex .form-item {
        padding: 0px;
    }
    .box-register {
        width: 100%;
        border-radius: 10px;
        background-color: #1192b988;
        margin-bottom: 20px;
        padding: 15px;
    }
    .box-register h6 {
        color: white;
        font-size: 18px;
    }
    .box-register a {
        /* text-decoration: none; */
        font-size: 18px;
        color: white;
        font-weight: 700;
    }
    .form-item a {
        background: -webkit-linear-gradient(180deg, #1192b9 0%, #00d6e4 100%);
        border-radius: 35px;
        height: 45px;
        cursor: pointer !important;
        color: white !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        margin-top: 20px;
        font-size: 14px;
        width: 100px;
        padding-top: 5px;
    }
}


/* The Modal (background) */

.modal-login {
    display: none;
    position: fixed;
    z-index: 10000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-login .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    /* width: 60%; */
}

.modal-login .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

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

.invalid-feedback {
    font-size: 14px;
    padding-top: 2px;
    padding-left: 5px;
    color: #dc3545;
    display: none;
}