body{
    font-family: 'Times New Roman', Times, serif;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url(../img/bg3.jpg) no-repeat center top;
    background-size: cover;
    height: 100vh;
}


form{
    background-color: black;
    opacity: 0.65;

    padding: 55px 55px 85px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    text-align: center;
    width: 320px;

    display: grid;
}


.inputgroup {
    display: flex;
    flex-direction: column;
    text-align: left;
}

h2{
    color: white;
    font-weight: bold;
    font-size: 29px;
    margin: 0;
}


p{
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}


.line{
    display: inline-block;
    width: 320px;
    height: 7px;
    background: linear-gradient(90deg, rgb(204, 129, 30) 0%,
    rgb(221, 137, 11)77%);
    align-items: center;
    justify-content: center;
}


label{
    color: orange;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}


input{
    padding: 17px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #c0c0c0c0;
    color: black;
    outline: none;

    background-color: white;
}

input::placeholder{
    color: #504e4ec0;
    font-size: 15px;
}


.form-txt{
    margin-bottom: 30px;
    display: flex;
    justify-content:center;
    text-align: center;
}


.form-txt a{
    color: yellow;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


.form-txt a:hover{
    color: red;
}


.btn{
    font-size: 16px;
    color: black;
    font-weight: bold;
    border: 0;
    border-radius: 25px;
    background: linear-gradient(90deg, rgb(204, 129, 30) 0%,
    rgb(221, 137, 11)77%);
    box-shadow: 0 0 20px rgba(129, 121, 3, 0.4);
    cursor: pointer;
}


.btn:hover{
    background: linear-gradient(90deg,
    rgb(185, 115, 9)0%,
    rgba(153, 70, 2, 0.822) 77% );
}



/* para hacer el formulario ajustable a la pantalla */
@media screen (max-width:991px){

    body{
        padding: 30px;
    }

    form{
        padding: 50px 30px;
        width: 100%;
    }

    input{
        padding: 15px;
    }

}
