body {
    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: 350px;
}

form h2{
    font-size: 30px;
    color:#0D0D0D;
    margin: 0;
}



form p{
    font-size: 15px;
    color: #5E5E5E;
    margin-bottom: 5px;
}

.input-wrapper{
    position: relative;
    width: 305px;
    margin-bottom: 20px;
}

a{
    color:#0D0D0D;
    padding: 20px 15px 10px 50px;
    width: 90%;
    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: #BBBBE2;
}

.input-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    left: 20px;
    top: 50%;
    transform: translateY(-55%);
}

.btn {
    padding: 20px;
    background: linear-gradient(
        90deg
        rgb(192, 136, 244) 25%,
        rgba(61,1,245,1) 100%);
    box-shadow: 0 0 20px rgba(131, 153, 239, 0.7);
    color: #341d55;
    text-transform: uppercase;
    font-size: 14px;
    cursor:pointer;
    text-decoration: none;
}

.btn:hover {
    background: rgb(207, 156, 254);
}

.succes {
    position: absolute;
    top: 50px;
    color: #00C83C;
    font-size: 18px;
}

.error {
    position: absolute;
    top: 50px;
    color: #E02D00;
    font-size: 18px;
}

label{
    border-radius: 10px; /* Ajusta el valor según el grado de curvatura deseado */
    background-color: #f0f0f0; /* Opcional: Agrega un color de fondo para mayor contraste */
    padding: 5px 10px; /* Opcional: Añade un espacio interno para que el texto no esté pegado a los bordes */
  }

@media(max-width:991px) {
    boby{
        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 {
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    appearance:none;
    outline:0;
    box-shadow:none;
    border:0!important;
    background: #737c7a;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color:#fff;
    cursor:pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
 }
 select::-ms-expand {
    display: none;
 }
 .select {
    position: relative;
    display: flex;
    width: 23.5em;
    height: 3em;
    line-height: 3;
    background: #5c6664;
    overflow: hidden;
    border-radius: .25em;
 }
 .select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #515555;
    cursor:pointer;
    pointer-events:none;
    transition:.25s all ease;
 }
 .select:hover::after {
    color: #aeaefa;
 }