@charset "UTF-8";

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

:root {
    --roxo:#4A0059;
    --roxinho:#9c0cb9;
    --rosa:#F2059F;
    --rosinha:#f389ce;
    --azul:#0583F2;
    --azulziho:#7eb8eb;
    --verde:#05F2AF;
    --verdinho:#AFFFFF;
}

html, body {
    height: 100vh;
    width: 100vw;
    background-color: var(--roxinho);
}

main {
    position: relative;
    height: 100vh;
    width: 100vw;
}

section#login {
    background-color: white;
    height: 550px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

div#imagem {
    display: block;
    height: 150px;
    background-image: url(../imagens/bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}

div#formulario {
    display: block;
    padding: 10px;
}

div#formulario h1 {
    text-align: center;
    margin-bottom: 10px;
}

div#formulario p {
    text-align: justify;
}

form {
    margin-top: 20px;
}

#div-email, #div-senha {
    background-color: var(--azul);
    border-radius: 8px;
    padding: 8px;
}

#div-senha {
    margin-top: 10px;
}

ion-icon {
    color: white;
    font-size: 1.5em;
}

#iemail, #isenha {
    padding: 8px;
    background-color: var(--verdinho);
    border-radius: 8px;
    border: none;
    font-size: 1em;
    width: 85%;
}

#iemail:focus-within, #isenha:focus-within {
    background-color: white;
}

#entrar, #esqueci-senha {
    width: 100%;
    padding: 16px;
    border: none;
}

#entrar {
    margin-top: 20px;
    background-color: var(--roxo);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1em;
}

#esqueci-senha {
    margin-top: 10px;
    font-weight: bold;
    background-color: white;
    border: 1px solid var(--roxo);
    border-radius: 8px;
    color: var(--roxo);
    font-size: 1em;
}

#entrar:hover{
    cursor: pointer;
    font-weight: bold;
    background-color: var(--verde);
    color: var(--roxo);
    border: 2px solid var(--roxo);
}

#esqueci-senha:hover {
    cursor: pointer;
    font-weight: bold;
    background-color: var(--verde);
    color: var(--roxo);
    border: 2px solid var(--roxo);
}