@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* todo corpo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
}

.frases {
    margin-top: 390px;
    background-color: rgba(0, 0, 0, 0.856);
    width: max-content;
}

.frases h2 {
    padding: 20px 20px 0px 20px;
    color: #fff;
}

.frases p {
    padding: 0px 20px 50px 20px;
    color: #fff;
}

/* Login de acesso Alunos */
.logotipo {
    background-size: cover;
    background-image: url(../img/four.png);
    background-repeat: no-repeat;
    background-position: center center;
    height: 120px;
    text-align: center;
    border: 2px solid #fff;
    margin-top: 3px;
}

.logotipo img {
    width: 22%;
    margin-top: 8px;
}

/* TÃƒÂ­tulos*/
.titulo {
    background-color: #fff;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
}

.titulo h6 {
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 10px;
    font-size: .7em;
}

.titulo p {
    color: #000000;
    font-size: .7em;
    margin-top: -8px;
}

/* Login */
.acesso {
    margin-top: 90px;
}

.login {
    text-align: center;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.autenticar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}

.form {
    width: 400px;
    padding: 30px;
}

.form .field {
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    background-color: #fff;
}

.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid#000000;
}

.field input:focus {
    border-bottom-width: 2px;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}

.field button {
    font-weight: 500;
    background-color: #282828;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover {
    background-color: #232323;
}

.field button a {
    color: #fff;
}

.field button a:hover {
    color: #fff;
    text-decoration: none;
}

.form-link {
    text-align: right;
    margin-top: 10px;
}

.form a {
    color: #0f0f0f;
    text-decoration: none;
}

.form-content a:hover {
    text-decoration: none;
    color: #454545;
}

.criar {
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #000000;
    padding-top: 5px;
    margin-bottom: 10px;
}

.criar a {
    font-weight: 500;
    font-size: .9em;
    font-weight: 400;
    color: #000000;
}

.criar a:hover {
    font-weight: 500;
    font-size: .9em;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
}

.chave {
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    background-color: #000000;
    padding-top: 5px;
}

.chave a {
    font-weight: 600;
    font-size: .9em;
    font-weight: 400;
    color: #ffffff;
}

.chave a:hover {
    font-weight: 600;
    font-size: .9em;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}



/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {
    .frases {
        display: none;
    }


    /* Logotipo */
    .logotipo {
        background-size: cover;
        background-image: url(../img/four.png);
        background-repeat: no-repeat;
        background-position: center center;
        height: 150px;
        text-align: center;
    }

    .logotipo img {
        width: 28%;
        margin-top: 13px;
    }

    /* TÃƒÂ­tulos*/
    .titulo {
        background-color: #fff;
        text-align: center;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        margin-top: -20px;
    }

    .titulo h6 {
        color: #000000;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-top: 10px;
        font-size: .7em;
    }

    .titulo p {
        color: #000000;
        text-transform: uppercase;
        font-size: .6em;
        margin-top: -8px;
    }

    /* Login */
    .login {
        text-align: center;
        background-color: #fff;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .autenticar {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -50px;
    }

    .form {
        width: 400px;
        padding: 30px;
    }

    .form .field {
        position: relative;
        height: 50px;
        width: 100%;
        margin-top: 20px;
        border-radius: 6px;
    }

    .field input,
    .field button {
        height: 100%;
        width: 100%;
        border: none;
        font-size: 16px;
        font-weight: 400;
        border-radius: 6px;
        background-color: #fff;
    }

    .field input {
        outline: none;
        padding: 0 15px;
        border: 1px solid#000000;
    }

    .field input:focus {
        border-bottom-width: 2px;
    }

    .eye-icon {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        font-size: 18px;
        color: #8b8b8b;
        cursor: pointer;
        padding: 5px;
    }

    .field button {
        font-weight: 500;
        background-color: #282828;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .field button:hover {
        background-color: #232323;
    }

    .field button a {
        color: #fff;
    }

    .field button a:hover {
        color: #fff;
        text-decoration: none;
    }

    .form-link {
        text-align: right;
        margin-top: 10px;
    }

    .form a {
        color: #0f0f0f;
        text-decoration: none;
    }

    .form-content a:hover {
        text-decoration: underline;
        color: #454545;
    }

    .criar {
        position: relative;
        height: 50px;
        width: 100%;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid #000000;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .criar a {
        font-weight: 500;
        font-size: 16px;
        font-weight: 400;
        color: #000000;
    }

    .criar a:hover {
        font-weight: 500;
        font-size: 16px;
        font-weight: 400;
        color: #000000;
        text-decoration: none;
    }

    .chave {
        position: relative;
        height: 50px;
        width: 100%;
        margin-top: 20px;
        border-radius: 6px;
        background-color: #000000;
        padding-top: 10px;
    }

    .chave a {
        font-weight: 600;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
    }

    .chave a:hover {
        font-weight: 500;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
    }


}