*{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    height: 100%;
    background-color: rgba(138, 138, 138, 0.472);
}

.contenedor{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.formulario{
    width: 400px;
    height: 600px;
    background-color: black ;
    padding: 40px;
    border-radius: 10px;
    color: white;
    animation-name: borde;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes borde {
    0%{
        border-radius: 0%;
    }
    100%{
        border-radius: 20%;
    }
}

.formulario h1{
    margin: 10px 0;
    text-align: center;
}

.formulario h2{
    margin: 5px 0;
    font-weight: unset;
    display: block;
}

input{
    width: 100%;
    height: 50px;
    margin: 10px 0;
    border: none;
    background-color: transparent;
    color: white;
    border-bottom: white 2px solid;
    font-size: 16px ;
}

.formulario a{
    margin-top: 10px;
    font-size: 20px;
    color: white;
    display: block;
    text-align: center;
    text-decoration: none;
}

.formulario a:hover{
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.formulario button{
    width: 100%;
    height: 40px;
    margin: 10px 0;
    border: none;
    outline: none;
    color: black;
    background-color: rgb(33, 182, 219);
    font-size: 16px;
    border-radius: 25px;
}

.formulario button:hover{
    color: white;
    background-color: rgb(33, 182, 219, 0.5);
    text-decoration: underline;
    cursor: pointer;
}
