/* google font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@700&display=swap');


/* reset */
* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(347.29deg, #F7F7F7 7.6%, #F9F9F9 92.44%);
}


/* Logo */

#logo {

    position: absolute;
    max-width: 230px;
    height: 60px;
    width: 100%;
    top: 2rem;
}

/* Caixa de login */
.login-container {
    top: 8rem;
    position: absolute;
    max-width: 340px;
    width: 100%;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
}

/* "Entrar" */
.login-container .title {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

.login-container .form {
    padding: 0.9rem;
}

/* Campos */
.form .input-field {
    position: relative;
    height: 2.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.input-field input {

    height: 100%;
    width: 100%;
    position: absolute;
    font-size: 0.7rem;
    font-weight: 450;
    padding: 0 1rem;
    outline: none;
    border: 0.1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.04);
}

#campo-icon input {
    padding: 0 2rem;
}

.infosenha span {
    left: 2%;
    font-size: 0.46rem;
    color: #b4b4b4;

}

.input-field.campo input::placeholder {
    color: #b4b4b4;
    transition: 200ms ease-in-out;
}

.input-field.campo input:hover {
    color: #858688;
    border: 0.8px solid #52c3ce;
    transition: 200ms ease-in-out;
}

.input-field.campo input:focus {
    color: #636363;
    border: 0.8px solid #0babb9;
    transition: 100ms ease-in-out;
}

/* Ícones*/
.input-field i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #cecfd1;
}

.input-field i.icon {
    left: 4%;
}

.input-field i.showHidePw {
    right: 4%;
}

/* Checkbox */

.form .checkbox-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.6em;
    color: #b4b4b4;
}

.checkbox-text .checkbox-content {
    display: flex;
    align-items: flex-start;
}

.checkbox-content input {
    margin: 0 8px -2px 4px;
    accent-color: #448A91;
}

.checkbox-content a {
    text-decoration: none;
    font-weight: 500;
    font-style: bold;
    color: #448A91;
}

.form .text {
    color: #858688;
}

.form a.text {
    text-decoration: none;
    font-weight: 500;
    font-style: bold;
    color: #448A91;
}

.termos a {
    position: relative;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 200;
    font-style: bold;
    color: #448A91;
}

.captcha-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.form .g-recaptcha {
    z-index: 1;
    position: relative;
    height: 1rem;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    transform: all 0.3s ease;
    transform: scale(0.932);
    transform-origin: 0 0;
}

/* Botão Fazer login */
.form .login-btn {
    margin-top: 1.5rem;
    color: #FFFFFF;
    background-color: #F68632;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    cursor: pointer;
}

.form .login-btn:hover {
    background: rgb(231, 119, 33);
    color: #FFFFFF;
}

/* Ja tem uma conta?*/
.login-signup {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    text-align: center;
}

#msg {
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    color: rgb(240, 72, 72);
    border-radius: 3px;
    margin-bottom: 2rem;
}