body{
    font-family: Arial, Helvetica, sans-serif;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgb(35, 1, 41) 0%, rgb(5, 1, 45) 77%);

}


#register{
    margin-top: 10px;
    width: 50vw;

}

form{
    padding: 25px 55px 25px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    width: 340px;
    background: #fff;
}


.input-group{
    display: flex;
    flex-direction: column;
    text-align: left;

}

h2{
    color: #1b1b1b;
    font-size: 35px;
    margin: 0;
}

p{
    font-size: 16px;
    color: #353535;
    margin-bottom: 20px;

}

.line{
    display: inline-block;
    width: 70px;
    height: 8px;
    background: linear-gradient(90deg, rgba(214,0,254,1) 0%, rgba(136,1,254,1) 77%);
}

label{
    color: #1b1b1b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

input{
    padding: 17px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #ededed;
    color: #1b1b1b;
    outline: none;
}

input::placeholder{
    color: #c0c0c0;

}

.form-txt{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.form-txt a{
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.btn{
    font-size: 16px;
    color: #ffcfff;
    border: 0;
    border-radius: 25px;
    background: linear-gradient(90deg, rgba(214,0,254,1) 0%, rgba(136,1,254,1) 77%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.btn:hover{
    background: linear-gradient(90deg, rgb(126, 3, 148) 0%, rgb(95, 1, 177) 77%);

}


.OlviClaveTxt{
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width:990px) {
    body{
        padding: 10px;
    }

    form{
        padding: 20px 30px;
        width: 55vw;
    }
    input{
        padding: 15px 10px;
        font-size: 1.1em;
    }

    
    #register{
        margin-top: 30px;
        width: 60vw;

    }
}

@media (max-width:740px) {
    form{
        width: 80vw;
        height: auto;
        margin-top: 30px;
    }
    h2{
        font-size: 2.3em;
    }
    label{
        font-size: 1.4em;
    }

    .form-txt a{
        font-size: 1.05em;
    }

    .btn{
        font-size: 1.5em;
    }

    #register{
        width: 97vw;
        height: auto;

    }
}
