@import url("https://fonts.googleapis.com/css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(#65b5fb 1%, #c9dff2 49%, #ffffff 96%);
    color: #111;
    display: flex;
    flex-direction: column;
}

header {
    height: 4vw;
    display: flex;
    align-items: center;
    padding: 0 2vw;
    background-color: #002645;
}

.logoLogin img {
    width: 10vw;
    margin-top: 1vw;
}

.menu {
    display: flex;
    gap: 3vw;
    font-size: 1.2vw;
    margin-left: auto;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover {
    transform: translateY(-0.15vw);
    transition: 0.4s ease-in-out;
    color: #768859;
}

main {
    display: flex;
    flex: 1;
}

.section-login {
    display: flex;
    width: 50%;
    background-color: #023966;
    justify-content: center;
    align-items: center;
}


.form-login {
    display: flex;
    flex-direction: column;
}

.inputs {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.tituloCampo {
    color: white;
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 0.3vw;
}

.campoInput {
    width: 30vw;
    height: 3vw;
    background-color: #d9d9d9;
    border-radius: 0.7vw;
    display: flex;
    align-items: center;
    padding: 0 0.6vw;
    box-shadow: 1px 1px 10px #494848;
}

.campoInput input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    color: #000000;
    margin-left: 1vw;
}

.botaoLogin {
    justify-items: center;
    width: 50%;
    height: 2.8vw;
    border: none;
    border-radius: 1vw;
    background-color: #f1f1f1;
    color: black;
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2vw;
    margin-bottom: 0.4vw;
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
}

.botaoLogin:hover {
    box-shadow: 1px 1px 20px #494848;
    transition: 0.4s ease-in-out;
}

.cadastroTexto {
    text-align: center;
    color: #f2f2f2;
    font-size: 1vw;
}

.cadastroTexto a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 600;
}

.cadastroTexto .textoCadastro:hover {
    transform: translateY(-0.15vw);
    transition: 0.4s ease-in-out;
    color: #111111;
}

.RedefinirTexto {
    text-align: center;
    color: #f1f1f1;
    font-size: 1vw;
}

.RedefinirTexto a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 700;
}

.RedefinirTexto .textoRedifinir:hover {
    transform: translateY(-0.15vw);
    transition: 0.4s ease-in-out;
    color: #111111;
}

.bannerLogo {
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerLogo img {
    width: 35vw;
}

#olhoAberto, #olhoFechado {
    font-size: 1vw;
    cursor: pointer;
    width: 30px;
    color: #f1f1f1;
}

#olhoFechado {
    display: none;
}

#msgCorretoEmail, 
#msgCorretoSenha {
    color: #90EE90;
    font-size: 1vw;
    margin-top: 0.3vw;
}

.menu-hamburguer {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-hamburguer span {
  display: block;
  width: 100%;
  height: 3px;
  background: #f1f1f1;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#fecharMenu {
    display: none;
}

@media screen and (max-width: 480px) {

    header {
        height: 80px;
        text-align: center;
        position: relative;
    }

    .menu {
        display: none;
    }

    .menu-hamburguer {
        display: flex;
        position: absolute;
        right: 4vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu.aberto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8vw;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #002645;
    }

    .menu.aberto a {
        color: #f1f1f1;
        font-size: 6vw;
        text-decoration: none;
    }

    #fecharMenu {
        display: block;
        position: absolute;
        top: 4vw;
        right: 5vw;
        background: none;
        border: none;
        color: #f1f1f1;
        font-size: 7vw;
        cursor: pointer;
    }

    .inputs {
        gap: 6vw;
    }

    .logoLogin img {
        display: block;
        width: 30%;
        margin-left: 4vw;
    }

    .form-login {
        gap: 3vw;
    }

    .tituloCampo {
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }

    .bannerLogo {
        display: none;
    }

    .section-login {
        width: 100%;
    }

    img {
        display: none;
    }

    .tituloCampo {
        font-size: 4vw;
    }

    .campoInput {
        width: 80vw;
        height: 8vw;
        border-radius: 2vw;
    }

    .campoInput input {
        font-size: 3vw;
        margin-left: 2vw;
    }

    .botaoLogin {
        width: 80vw;
        height: 6vw;
        font-size: 3vw;
        margin-top: 13vw;
    }

    .cadastroTexto {
        font-size: 3vw;
    }

    .RedefinirTexto {
        font-size: 3vw;
    }

    .botaoLogin {
        width: 60vw;
        height: 7vw;
        font-size: 3vw;
        border-radius: 2vw;
    }

    #olhoAberto, #olhoFechado {
        font-size: 3vw;
    }

    #msgCorretoEmail, 
    #msgCorretoSenha {
        font-size: 3vw;
    }
}