html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: rgb(66, 66, 66);
}

a:hover {
    color: #8E4999;
}

.btn-primary:hover {
    background-color: #8E4999;
}

h3 {
    margin-top: 0px;
    margin-bottom: 20px;
    color: #8e8e8e;
    font-weight: 300;
}

.fundo_lateral_logo {
    max-width: 300px;
}

.panel-body b {
    font-size: 19px;
    color: #646464;
}

.form-control {
    border: 1px solid #e4e4e4 !important;
}

.login_left {
    width: 100%;
    float: left;
    height: 100vh;
    background: #fff;
    padding-top: 100px;
}

.input-group-text {
    border: 1px solid #f3f3f3;
}

.login_right {
    background: url("../../img/fundo_right.png") no-repeat center center;
    background-size: cover;
    width: 0%;
    float: left;
    height: 100vh;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding-left: 100px;
    padding-top: 40vh;
    display: none;
}

.login_right p {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    animation: type 3s steps(60, end);
}


.login_right p:nth-child(2) {
    animation: type2 3s steps(60, end);
}

.login_right p:nth-child(3) {
    animation: type2 5s steps(60, end);
}

.login_right p:nth-child(4) {
    animation: type2 8s steps(60, end);
}

@keyframes type {
    from {
        width: 0;
    }
}

@keyframes type2 {
    0% {
        width: 0;
    }

    50% {
        width: 0;
    }

    100% {
        width: 100;
    }
}

@keyframes blink {
    to {
        opacity: .0;
    }
}

.login_right b {
    font-weight: 600;
}


@keyframes anim-stars {
    0% {
        margin-top: 0px;
    }

    30% {
        margin-top: 10px;
    }

    50% {
        margin-top: 30px;
    }

    70% {
        margin-top: 10px;
    }

    100% {
        margin-top: 0px;
    }
}

.imagem_astronauta {
    animation: anim-stars 5s linear infinite;
}

.form-control,
.select.input-group select {
    -webkit-box-shadow: 0px 39px 34px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 39px 34px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 18px -12px rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    height: 40px;
    font-weight: 400;
    font-size: 16px;
    color: #8e8e8e;
}

label {
    font-weight: 300;
    font-size: 16px;
    color: #8e8e8e;
}

.form-control:focus {
    border-color: var(--color-primary-dark) !important;
}

.input-group {
    border-left: 0px !important;
    margin-bottom: 15px;
}

.input-group-focus {
    border-color: var(--color-primary-dark) !important;
    transition-duration: .5s;
}

input::placeholder {
    overflow: visible;
}

.btn {
    font-size: 16px;
    font-weight: 300;
    border: none !important;
}

.btn-primary,
.btn-primary:focus {
    width: 100% !important;
    background-color: #383838 !important;
    border-color: #383838 !important;
    height: 40px !important;
    margin-top: 20px !important;
}

.btn-primary:hover {
    background-color: var(--color-primary-light) !important;
}

.btn-primary:focus {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary) !important;
}

.conteudo_principal {
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.conteudo_rolagem {
    padding: 40px;
    background: #fff;
}

.login {
    background-color: #fff;
    height: 100%;
    text-align: center;
    padding: 0px 30px;
    position: relative;
}

.login h1 {
    margin-top: 30px;
}

.login p {
    margin: 0px 0px 35px;
}

.alert {
    position: absolute;
    width: calc(800px - 30px);
    bottom: -100px;
    z-index: 9999999;
}

.alert .close {
    margin-top: 5px;
}

.esqueci-minha-senha {
    position: absolute;
    bottom: -59px;
    left: 34%;
    height: 50px;
}

.esqueci-minha-senha a {
    color: var(--color-primary)
}

.esqueci-minha-senha a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.botao_customizado_tipos {
    width: 100%;
    display: block;
    height: 60px;
    margin: 3px;
    text-align: center;
    padding: 15px 0px;
    background: #FFBB00;
    color: #000;
    -webkit-box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
}

.botao_customizado_tipos:hover {
    background-color: #eed66a;
}

@media(min-width: 768px) {
    .login_left {
        width: 50%;
        padding-top: 100px;
    }
    .login_right {
        width: 50%;
        display: block;
    }
    .conteudo_principal {
        -webkit-box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 0px 62px -27px rgba(0, 0, 0, 0.75);
        margin-top: 20%;
    }

    .fundo_lateral {
        padding: 55px 0px;
    }

    .conteudo_rolagem {
        max-height: 500px;
        overflow-y: auto;
        padding: 20px !important;
        background: #fff;
    }

    .botao_customizado_tipos {
        float: left;
        width: 100%;
        height: 50px;
    }

}

@media(min-width: 1300px) {
    .login_left {
        width: 40%;
        padding-top: 180px;
    }
    .login_right {
        width: 60%;
        font-size: 30px;
    }
}

@media(max-width: 450px) {

    .botaoAdd,
    .botao_customizado {
        width: 100%;
        margin-bottom: 5px;
    }
}

.volta-login {
    padding-top: 25px;
}

.confirm_gif {
    margin-top: -2px;
    max-width: 20px;
}

.error-message {
    color: red;
}

.conteudo_principal .row {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    border-radius: 5px;
    overflow: hidden;
}

.volta-login a {
    padding: 10px;
}

button img {
    max-height: 100%;
}

@media(max-width: 999px) {
    .conteudo_principal .row {
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        border-radius: 5px;
    }

    .alert {
        position: absolute;
        width: 100%;
        bottom: -100px;
        z-index: 9999999;
    }

    .fundo_lateral {
        height: 100px;
        overflow: hidden;
        border-radius: 10px;
        margin: 30px !important;
        width: calc(100% - 60px);
    }
}

.link_dev {
    display: block;
    text-align: center;
    margin-top: 130px;
}

.fundo_lateral::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.7);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.input-group input,
.input-group select,
.input-group textarea {
    border-radius: var(--input-border-radius) !important;
}

.input-group input.border-addon {
    border-radius: 0px var(--input-border-radius) var(--input-border-radius) 0px !important;
}

.input-group .input-group-text {
    border-radius: var(--input-border-radius) 0px 0px var(--input-border-radius) !important;
    width: 42px;
}

.btn {
    font-size: 16px;
    font-weight: 300;
    border: none !important;
    height: 45px;
    border-radius: var(--button-border-radius);
    transition: 500ms;
    padding: 0px 25px;
}

.rippleEffect {
    /* text-transform: uppercase; */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rippleEffect .ripple {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    transform: scale(0);
    animation: ripple 0.4s linear;
}

.trocar-email {
    display: inline-block !important;
    height: 45px;
}

a {
    text-decoration: none !important;
}

.input-group .input-group-text {
    background: #fff !important;
}

.form-control,
.select.input-group select {
    border: 1px solid #fff;
}

.esqueci_senha a {
    color: #fff;
}