﻿body {
    font-size: 1.4rem;
    height: 100vh;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}


.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.padding-left-20 {
    padding-left: 20px
}

input[type=text], input[type=password], input[type=email] {
    padding-left: 20px;
    border-radius: 30px;
    height: 50px;
}


.btn-primary {
    background-color: rgb(36,150,211);
    border: 0;
}

.titulo {
    color: rgb(36,150,211);
}

.formulario {
    width: 540px;
    border: 1px solid #e3e3e37f;
    box-shadow: rgba(0,0,0, 0.1) 3px 3px 5px;
    border-radius: 14px;
    padding-bottom: 10px;
}

form {
    padding: 30px;
}

button {
    width: 115px;
    height: 40px;
}

.flex {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn {
    border-radius: 30px;
}

.full-width {
    width: 100%
}

.social-button {
    border-color: rgba(36,150,211, 0.5);
    color: rgb(36,150,211);
    align-items: center
}

    .social-button > img {
        height: 18px;
        padding-right: 10px;
    }





.toast {
    display: none;
    width: 400px;
    margin: auto;
    margin-top: 10px;
    position: fixed;
    right: 0;
    left: 0;
    top: -200px;
    z-index: 1000;
    text-align: center;
}

.toast-visible {
    display: block;
    animation: move 1s 2;
    animation-direction: alternate;
}

@keyframes move {
    0% {
        top: -100px;
        opacity: 0;
    }

    20% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 10px;
    }
}


a {
    text-decoration: none;
    line-height: 20px;
    border-bottom: 1px solid rgb(36,150,211);
    padding-bottom: 1px;
    color: rgb(36,150,211)
}

    a:hover {
        color: rgb(36,150,211);
        text-decoration: none;
    }

.no-border-left, .no-border-right {
    border: 1px solid #e3e3e37f;
    border-bottom: 0;
    border-radius: 0;
    outline: none
}

    .no-border-left:hover, .no-border-right:hover, .no-border-left:focus, .no-border-right:focus, .no-border-left:active, .no-border-right:active {
        border: 1px solid #e3e3e37f;
        border-bottom: 0;
        background-color: #fff !important;
        color: rgb(36,150,211);
        outline: none;
    }

    .no-border-left:hover {
        border-left: 0;
    }

    .no-border-right:hover {
        border-right: 0;
    }

.no-border-left {
    border-left: 0;
    border-bottom-left-radius: 14px;
}

.no-border-right {
    border-right: 0;
    border-bottom-right-radius: 14px;
}

.form-footer {
    height: 62px;
}

.iu-alert {
}


#btn-criar-conta[active] {
    color: rgb(36,150,211) !important;
    background-color: transparent !important;
}

#btn-entrar-conta-existente[active] {
    color: rgb(36,150,211) !important;
}

.legenda-senha {
    /*  display:flex;
    flex-direction:row;*/
    list-style: none;
}

.mensagem-politica-atualizada {
    color: red;
    margin-top: 10px;
}

.legenda-senha li {
    display: flex;
    justify-content: initial;
}

.olho {
    cursor: pointer;
    width: 20px;
}