@charset "UTF-8";

@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    display:flex;
    justify-content: center;
}
/*Inicio da nav*/
nav {
    position: absolute;
    right:  0px;
    top: 0px;
    margin: 18px;
}
nav button{
    border: none;
    border-radius: 7px;
    padding: 7px 20px;
    font-weight: 500;
    font-size: 12pt;
    margin: 0 10px;
}
#criar_conta:hover, #entrar_conta:hover{
    cursor: pointer;
    transform: translate(1px, 2px);
    transition: .1s;
    background-color: #bacdbd;
}
/*--Fim da nav--*/

.imagem-tela img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    filter: brightness(60%);
}

/*--Inicio do formulario--*/
.formulario {
    flex-shrink: 2;
    margin:15% 0;
    width: 450px;
    max-height: 600px;
    border: solid 3px rgb(90, 88, 88);
    border-radius: 10px;
    background: rgba(169, 169, 169, 0.3);
    
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.main-text{
    max-width: 280px;
    margin: 30px;
    flex-shrink: 2;
}

.main-text h1 {
    flex-shrink: 2;
    font-size: 24pt;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-transform: none;
}

label {
    flex-shrink: 2;
    background-color: rgba(34, 34, 34, 0.8);
    color: white;
    padding: 7px 20px;
    border-radius: 7px;
    font-size: 12pt;
    font-weight: 700;
}
label:hover {
    background-color: rgba(47, 49, 47, 0.8);
}

.formulario section {
    flex-shrink: 2;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    gap: 20px;
}

.formulario section div {
    display: flex;
    margin: 0 40px;
}

.formulario section input:hover {
    cursor: pointer;
}

.formulario section input::placeholder {
    flex-shrink: 2;
    color: #000;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
}

.formulario section input{
    flex-shrink: 2;
    border: none;
    border-radius: 7px;
    padding: 7px 20px;
    margin-left: 10px;
    font-size: 12pt;
    width: 100%;
}
.close{
    position: absolute;
    left: 20px;
    margin-top: 10px;
    text-decoration: none;
    background: none;
    border: none;
    color: darkorange;
    font-size: 16pt;
    font-weight: 700;
}
.close:hover{
    color: orangered;
    cursor: pointer;
}
.send-input{
    flex-shrink: 5;
    margin: 40px;
    padding: 10px 40px;
    font-size: 14pt;
    font-weight: 700;
    background-color: rgba(47, 49, 47, 0.9);
    border: solid rgba(169, 169, 169, 0.3);
    border-radius: 10px;
    color: #fff;
}

.send-input:hover {
    background-color: rgb(82, 82, 81);
    cursor: pointer;
}

.feitoPor {
    position: fixed;
    color: #fff;
    left: 5px;
    bottom: 5px;
    z-index: 0;
    width: 58px;
}
.feitoPor:hover {
    text-decoration: underline;
    box-shadow: 2px 2px 2px #23aeff;
}
.feitoPor h2{
    font-size: 6pt;
}