.paginaLogin {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1e1e;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    height: 80vh;
    border: 2px solid #9000FF;
}

.tittleanddiv {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 25vh;
    background-color: #1e1e1e;
    flex-direction: column;
    align-items: center;
}

.tittleanddiv h1 {
    color: #f6f6f6;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 400;
}

.tittleanddiv span {
    width: 80%;
    height: 0.5vh;
    background: #9000FF;
    border-radius: 50px;
}

.formulario {
    width: 100%;
    height: 55vh;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: row;

}

.formulario form {
    padding-top: 50px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.formulario h1 {
    color: #f6f6f6;
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.formulario input {
    border: #9000FF solid 1px;
}

.inpemail {
    padding-left: 5px;
    width: 50%;
    height: 4vh;
    margin-bottom: 25px;
}

.inppassword {
    padding-left: 5px;
    width: 50%;
    height: 4vh;
    margin-bottom: 80px;
}

.inpsub {
    background-color: #1e1e1e;
    width: 20%;
    height: 5vh;
    color: #f6f6f6;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.inpsub:hover {
    background-color: #9000FF;
    transition: 1s;
}

.login p {
    color: #f6f6f6;
    padding-bottom: 10vh;
    font-size: 20px;
    font-family: "Inter", sans-serif;
}

.login a {
    color: #9000FF;
}