body {

    background-image:
 url(images/fondo.jpg) ;

box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;

form {

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 50px 35px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 380px;

}

form h2 {

font-size: 35px;
color: black;
margin: 0;

}

form p {

    font-size: 16px;
    color: black;
    margin-bottom: 10px;
    text-align: left;

}

.input-wrapper {
    position: relative;
    width: 305px;
    margin-bottom: 35px;
}

input {

    color: black;
    padding: 20px 15px 20px 60px;
    width: 100%;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
outline: none;
font-size: 16px;
}

input::placeholder {
    font-size: 16px;
    color: black;
}

.input-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    left: 20px;
    top: 50%;
    transform: translateY(-55%);
}

.btn {
    padding: 20px;
    background: linear-gradient(
        90deg,
        rgba(140,43,231,1) 25%,
        rgb(61, 1, 245, 1) 100%);
        box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
        color: white;
        text-transform: uppercase;
        font-size: 14px;
        cursor: pointer;
}

.btn:hover {
    background: rgb(153, 47, 252);
}
.success {
    position: absolute;
    top: 50px;
    color: chartreuse;
    font-size: 18px;
}

.error {
    position: absolute;
    top: 50px;
    color: red;
    font-size: 18px;
}

@media (max-width:991px) {
    body {
        padding: 10px;
    }

    form {
        padding: 20px;
        width: 100%;
    }
.input-wrapper {
    position: relative;
    width: 88%;
    margin-bottom: 35px;
}

input {

    padding: 20px 0px 20px 45px;
}

.input-icon {
    height: 20px;
    width: 20px;
}

    
}

.select-wrapper {
    position: relative;
    width: 305px;
    margin-bottom: 35px;
    }

    select {

        color: black;
        padding: 20px 15px 20px 60px;
        width: 380px;
        border-radius: 25px;
        border: 0;
        box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
    outline: none;
    font-size: 16px;
    }


}