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

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(16, 16, 16);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(160, 197, 184);
    padding: 10px;
    background-color: #35353580;
    border-radius: 14px;
    padding-bottom: 20px;
    width: min(90%, 400px);
}

.formulario-cadastro,
.formulario-login,
.formulario-recuperar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

input {
    padding: 5px 10px;
    margin: 2px;
    font-size: 14px;
    background-color: rgb(219, 231, 249);
    border-radius: 3px;
    border: 0px;
    border-bottom: 1.5px solid rgb(219, 219, 238);
    width: 100%;
}

input:focus {
    border: 2px solid black;
}

.nome-container,
.email-container,
.senha-container,
.confirSenha-container,
.codigo-container {
    width: 85%; 
    max-width: 340px;
    margin: 6px auto;
    display: flex;
    flex-direction: column;
}

.nome-container input,
.email-container input,
.senha-container input,
.confirSenha-container input,
.codigo-container input {
    margin: 0px;
}

button {
    margin: 10px;
    border-radius: 5px;
    border: 2px solid rgb(144, 213, 213);
    padding: 5px 15px;
    background-color: rgb(144, 213, 213);
    font-size: 16px;
    cursor: pointer;
    transition: all .4s ease-out;
}

button:hover {
    background-color: rgb(70, 172, 246);
    font-size: 18px;
}

h1 {
    margin: 5px;
    font-size: 28px;
    color: rgb(240, 240, 240);
}

.texto {
    color: rgb(210, 213, 215);
    letter-spacing: 0.5px;
    margin-bottom: 1px;
    font-size: 16px;
}

.enviado-cadastro,
.enviado-login,
.enviado-recuperar {
    border: 2px solid rgb(72, 174, 72);
    background-color: rgb(194, 247, 194);
    color: rgb(51, 51, 51);
    width: 80%;
    padding: 8px;
    border-radius: 5px;
    margin: 3px;
    display: none;
    text-align: center;
    font-size: 14px;
}

p {
    margin: 10px;
    font-size: 18px;
    color: aliceblue;
}

a {
    margin: 0px;
    text-decoration: none;
    cursor: pointer;
    color: rgb(21, 197, 197);
    transition: all .4s ease-out;
}

a:hover {
    color: rgb(103, 132, 246);
    font-size: 20px;
}

hr {
    margin-top: 5px;
    width: 80%;
    background-color: white;
    border: 2px solid white;
}

.botao-login,
.botao-recuperar {
    margin: 10px;
    padding: 5px 13px;
    align-self: center;
}

#senha-hidder,
#rp-senha-hidder,
#rp-confirmar-senha-hidder {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    align-items: center;
}

#senha1,
#rp-senha,
#rp-confirmar-senha {
    width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
}

#hidder,
#rp-hidder,
#rp-confirmar-hidder {
    width: 27px;
    height: 27px;
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
    max-width: none !important;
    user-select: none;
}

@media (min-width: 1200px) {
    #hidder,
    #rp-hidder,
    #rp-confirmar-hidder {
        width: 30px;
        height: 30px;
    }
}

#rp-codigo {
    width: 100%;
    box-sizing: border-box;
}
