/* 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;

}

#Msg {
    z-index: 1;
    position: relative;
    top: 6rem;
}

/* Container */
.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);

}

/* "Esqueceu a senha?" */
.container .title {
    position: relative;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

.container .form {
    padding: 0.9rem;
}

/* Campos de Login e Senha */
.form .input-field {
    position: relative;
    height: 2.5rem;
    width: 100%;
    
}

.input-field input {

    height: 100%;
    width: 100%;
    position: absolute;
    font-size: 0.7rem;
    font-weight: 450;
    padding: 0 2rem;
    outline: none;
    border: 0.1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.04);
}

.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%;
}

.info-recuperacao {
    position: relative;
    color: #858688;
    font-size: 0.7rem;
    text-align: center;
    padding: 2rem 2rem 0 2rem;
}

/* ReCaptcha */

.form .g-recaptcha {
    z-index: 1;
    position: relative;
    height: 1rem;
    width: 100%;
    margin-top: 2rem;
    transform: all 0.3s ease;
    transform: scale(0.935);
    transform-origin: 0 0;
} 


/* Botão Recuperar acesso */
.form .login-btn {
    margin-top: 5.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 a.text {
    text-decoration: none;
    font-weight: 500;
    font-style: bold;
    color: #448A91;
}

.voltar {
    margin-top: 7rem;
    font-size: 0.8rem;
    text-align: center;
}


#msg {
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    color: rgb(240, 72, 72);
    border-radius: 3px;
    margin-bottom:1rem;
}





