    @font-face {
        font-family: 'ubuntu';
        font-style: normal;
        font-weight: 400;
        src: local('ubuntu'), local('Ubuntu-Regular'), url(../fonts/ubuntu/Ubuntu-Regular.ttf) format('truetype');
    }
    
    @font-face {
        font-family: 'Noto Sans';
        src: local('Noto Sans'), local('NotoSans-Regular'), url(../fonts/noto sans/NotoSans-Regular.ttf) format('truetype');
    }
    
    .modal-wrapper {
        width: 100%;
        height: 100%;
        min-height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .7);
        transition: .4s;
        visibility: hidden;
        opacity: 0;
        z-index: 100;
    }
    
    .data-modal-content {
        max-width: 400px;
        width: 100%;
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 10;
        background-color: #2bade3;
        color: #fff;
        padding: 20px;
    }
    
    .data-modal-content h3 {
        font-family: ubuntu;
        text-align: center;
        font-size: 28px;
        text-transform: uppercase;
    }
    
    .data-modal-content h3:after {
        content: '';
        display: block;
        border-bottom: 3px solid #353535;
        margin-left: -70px;
        position: relative;
        bottom: 0;
        left: 50%;
        width: 150px;
        margin-bottom: 20px;
        margin-top: 20px;
        color: #000;
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, #00aff0, #fff, #00aff0);
    }
    
    .data-modal-content p {
        text-align: center;
        font-size: 15px;
        font-family: ubuntu;
        padding: 10px 10px 10px 10px;
        /*font-family: 'Noto Sans', sans-serif;*/
    }
    
    .modal-opened {
        opacity: 1;
        visibility: visible;
    }
    
    .fechar-modal {
        position: absolute;
        right: 9px;
        top: 20px;
        background: transparent;
        /* border-radius: 30px; */
        width: 30px;
        height: 30px;
        font-size: 30px;
        /*line-height: 20px;*/
        border: none;
         color: #fff; 
        font-weight: 700
    }
    
    .login_password {
        border: solid 1px #E5E5E5;
        background: #FFFFFF;
        margin: 31px 20px 0px 25px;
        padding: 4px 6px;
        display: block;
        font-size: 14px;
        width: 86%;
        font-family: ubuntu;
        margin-bottom: 25px;
        color: #000;
        height: 42px !important;
    }
    
    .login_submit {
        background: #006d96 !important;
        margin: 41px 20px 0px 25px !important;
        padding: 12px !important;
        display: block !important;
        font-size: 19px !important;
        width: 86% !important;
        font-family: ubuntu !important;
        margin-bottom: 25px !important;
        border: none !important;
        color: #fff;
    }
