﻿/* Login, Esqueceu Senha e Resetar Senha  - View da pagina. */
* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background:#fefefe;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #313131;
    line-height: 1;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

img {
    width: 320px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 400px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgba(49, 49, 49, 0.25);
    box-shadow: 0 4px 4px rgba(49, 49, 49, 0.25);
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    height: 100%;
    margin: 10px;
}

.verify-principal {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    height: 100%;
    margin: 10px;
}

.form-principal {
    display: flex;
    flex-direction: column;
}

.alert {
    padding: 10px;
    border-radius: 5px;
}

.alert-danger {
    background-color: #f75858;
    font-size: 14px;
    color: #fff;
}

.alert-success {
    background-color: #84EA55;
    font-size: 14px;
    color: #fff;
}


.form-group .filled {
    border: 1px solid #ff9203;
}

.form-group .filled .fa-solid {
    background-color: #ff9203;
}

.form-group {
    display: flex;
    align-items: center;
    border: 1px solid #c7c6c6;
    border-radius: 5px;
    margin: 10px 0;
}

.form-group:focus-within {
    border: 1px solid #ff9203;
}

.form-group:focus-within .fa-solid{
    background-color: #ff9203;
}

.fa-solid {
    background-color: #84EA55;
    padding: 14px;
    border-radius: 4px 0 0 4px;
}

.fa-user-large{
    color: #fff;
}

.fa-lock {
    color: #fff;
}

.form-control {
    width: 100%;
    border: 0;
    border-radius: 0 5px 5px 0;
    padding-left: 10px;
    background: transparent;
    outline: none;
}

.text-danger {
    padding-right: 5px;
    font-size: 14px;
    color: #f75858;
}

.remember {
    display: flex;
    text-align: left;
    align-items: center;
}
.remember .control-label {
    margin-right: 5px;
    color: #3BA10B;
}


.remember input {
    border: 1px solid #c7c6c6;
}

.btn {
    width: 100%;
    height: 36px;
    margin: 14px 0;
    border: 0;
    border-radius: 5px;
}

.btn-login {
    background-color: #84EA55;
    color: #fff;
}

.link {
    display: flex;
    justify-content: end;
}

.link .fa-solid {
    padding: 0 5px;
    background-color: transparent;
}

.link .fa-right-to-bracket {
    color: #3BA10B;
}

.link .fa-key {
    color: #3BA10B;
}

.link .fa-right-to-bracket {
    color: #3BA10B;
}

.--has-error {
    border: 1px solid #f75858;
}

.--has-error .fa-solid {
    background-color: #f75858;
}

.filled {
    display: flex;
    align-items: center;
    border: 1px solid #ff9203;
    border-radius: 5px;
    margin: 10px 0;
}

.filled .fa-solid {
    background-color: #ff9203;
}

.filled:focus-within {
    border: 1px solid #ff9203;
}

.filled:focus-within .fa-solid{
    background-color: #ff9203;
}

a {
    text-decoration: none;
    color: #3BA10B;
}

h2 {
    color: #313131;
    text-align: center;
    margin: 20px 0;
    font-variant: small-caps;
    font-size: 18;
}