body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    /*background: linear-gradient(150deg, #6C3483, #58D68D);*/
    background-image: url("../imagenes/padel_background.jpg");
    background-size: cover;
    background-position: 30% 15%;
    height: 100vh;
}

/*tablets*/
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }
}

/* moviles */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    h1 {
        font-size: 20px;
    }
}

.formulario {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, .50%);
    width: 400px;
    background: #fafafa;
    border: 3px solid #fafafa;
    backdrop-filter: blur(0.4rem);
    border-radius: 10px;
}

.formulario h1 {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
}

.formulario form {
    padding: 0 40px;
    box-sizing: border-box;
}

form .psswd_recovery {
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.psswd_recovery input {
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
}

.psswd_recovery label {
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.psswd_recovery span::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #6C3483;
    transition: .5s;
}

.psswd_recovery input:focus ~ label,
.psswd_recovery input:not(:placeholder-shown) + label {
    top: -5px;
    color: #6C3483;
}

.psswd_recovery input:focus ~ span::before,
.psswd_recovery input:focus ~ span::before{
    width: 100%;
}

input[type="submit"]{
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: #6C3483;
    border-radius: 25px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    outline: none;
}

input[type="submit"]:hover{
    border-color: #853ea1;
    transition: .5s;
}

h2 {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
}

h3 {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
}

.hidden {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.again_button {
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    color: black;
}

.again_button input{
    border: none;
    background: none;
    color: blue;
    text-decoration: none;
    font-size: 20px;
}

.again_button input:hover {
    cursor: pointer;
    text-decoration: underline;
}
