body {
    font-family: "SF Regular";
    font-weight: 400;
    height: 100vh;
}


.login{
	width: 100vw;
	background-repeat: no-repeat;
	background-size: cover;
}

.px-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.mx-0 {
    margin-left: 0px !important;
}

.col-left {
    background-image:url(../img/background_login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.col-right {
    height: 100vh;
    padding-left: 4.7% !important;
    padding-right: 4.7% !important;
}


.text-header {
    font-family: "SF Heavy";
    font-size: 32px;
    color: rgba(0,0,0,0.80);
    margin-top: 19.4%;
}

.group-form {
    margin-top: 22%;
}

.link {
    color: #0077FF;
    float: right;
    margin-top: 1.2%;
}

.btn-logar {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    font-family: "SF Heavy";
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    background: #0077FF;
    border: 0;
    padding: 0;
    margin-top: 32px;
    transition: all ease 0.25s;

}

.btn-logar:hover {
    background: #006DEA;
}

.btn-modal {
    padding: 0px 16px 0px 16px !important; 
    height: 48px;
    border-radius: 8px;
    font-family: "SF Heavy";
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    background: #0077FF;
    border: 0;
    padding: 0;
    margin-top: 0%;
}

.field-icon {
	float: right;
    margin-top: -32px;
    margin-right: 12px;
	z-index: 2;
	width:24px;
    height:24px;
    position: relative;
    cursor: pointer;
}

.see::before{
	content: url(../img/_visibility.svg);
}

.unsee::before{
	content: url(../img/_visibility_off.svg);	
}

.pst-relative {
    position: relative;
}

.back {
    background: url(../img/_black.svg);
    width: 24px;
    height: 24px;
    display: block;
    cursor: pointer;
    content: ' ';
    margin-top: 7.3%;
}

.modal-dialog { 
    width: 480px;
    margin: auto;
    margin-top: 192px; 
}

.modal-title {
    font-family: 'SF Heavy';
    font-size: 24px;
    color: rgba(0,0,0,0.80);
    padding: 40px 40px 24px 40px;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events:all;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 0px solid #999 !important;
    border: 0px solid rgba(0,0,0,.2) !important;
    border-radius: 12px;
    outline: 0;
    -webkit-box-shadow: 0 0px 0px rgba(0,0,0,.0) !important;
    box-shadow: 0 0px 0px rgba(0,0,0,.0) !important;
}

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none;
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}

.modal-header {
    padding: 0 !important;
    border-bottom: 0px solid rgba(0,0,0,.0) !important; 
}

.modal-body {
    padding: 0 !important;
}

.modal-text {
    padding: 0px 40px 24px 40px;
    font-family: "SF Regular";
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}

.modal-footer {
    padding: 16px;
}

.logo-protecard {
    display: none;
    width: 127px;
    height: 32px;
    background: url(../img/_Logo-sm.svg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 37px; 
}

.gradiente-efeito {
    width: 100%;
    position: relative;
    z-index: 10;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0,119,255,0.80) 0%, rgba(224,50,54,0.56) 100%);
}

.logo-col-left {
    width: 513px;
    height: 162px;
    background: url(../img/_Logo-white-bg.svg);
    margin: auto;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

/* media query */

@media only screen and (max-width: 600px) {
    .col-left {
        display: none;
    }

    .logo-protecard {
        display: block;
    }

    .text-header {
        margin-top: 64px;
    }

    .btn-logar{
        height: 48px;
    }

    .col-right {
        overflow: hidden;
        height: 100vh;
        padding-left: 8.9% !important;
        padding-right: 8.9% !important;
    }
    
}