@charset "utf-8";
/***** CSS Document *****/

@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url(icones/css/fontello.css);

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.termos{
    width: inhrited !important;
}

.alerta {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

.sucesso {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #C2DEAB;
}

.falha {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.but {
    background: #F90;
    color: #FFF;
    font-family: Raleway;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border: none;
    display: block;
    cursor: pointer;
    transition: all .3s linear;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

.but[disabled] {
    background: #0099cc;
    color: #FFF;
    opacity: .6;
    cursor: default;
}

.but[disabled]:hover {
    background: #0099cc;
}

.but:hover {
    background: #F60;
}

.but-alt {
    background: #09C;
}

.but-alt:hover {
    background: #06C;
}

.container {
    height: 100vh;
    display: flex;
}

.container>div {
    flex: 1;
    position: relative;
    padding: 30px;
}

.container #logo {
    position: absolute;
    top: 50%;
    right: 50px;
    translate: 0 -50%;
    width: 300px;
}

.container>div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .small-container {
    width: 400px;
}

.container .orientacoes {
    width: 600px;
}

.container .small-container h1 {
    font-family: Raleway;
    margin-bottom: 30px;
    text-align: center;
}

.container .orientacoes ul {
    margin-left: 15px;
}

.container .orientacoes li {
    margin-bottom: 10px;
}

.container .small-container #mais-info {
    margin: 30px 0;
}

.container .small-container #mais-info a {
    text-decoration: none;
    color: #06C;
    transition: all .3s linear;
}

.container .small-container #mais-info a:hover {
    color: #03C;
    text-decoration: underline;
}

.container .small-container div {
    margin-bottom: 20px;
}

.container .small-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.container .small-container input {
    background-color: #eee;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline-style: none;
    padding: 15px;
    width: 100%;
}

#termo{
    width: 20px;    
}

@media only screen and (max-width: 900px) {
    .container {
        display: block;
    }

    .container>div {
        position: static;
    }

    .container #logo {
        position: static;
        width: 80%;
        margin: auto;
        display: block;
        translate: initial;
    }

    #rodape {
        font-size: .5rem;
    }

}