* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

  
  font-family: 'Roboto', sans-serif;
  background: black;

    /* background: linear-gradient(-45deg,
    #000000, #0f0f0f, #303030, #000000, #161616);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite; */


}

.form-registro {

    width: 80%;
    max-width: 500px;
    background: #494646;
    margin: auto;
    margin-top: 180px;
    box-shadow: 7px 13px 37px #000;
    padding: 20px 30px;
    border-top: 4px solid#000000;
    color: white;

    border-radius: 4px;
}

.form-registro h5 {
    margin: 0;
    text-align: center;
    height: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid;
    font-size: 20px;



}

.controls {
    width: 100%;
    border: 1px solid#000000;
    margin-bottom: 15px;
    padding: 10px;
    background: #252323;
    font-size: 14px;
    font-weight: bold;
    color: white;

}

.boton {
    width: 100%;
    height: 40px;
    background: #000000;
    border: none;
    color: white;
    margin-bottom: 16px;

}

.boton:hover {
    background-color: #161616;
    cursor: pointer;
}
.boton2:hover {
    
    color: #f2f2f2;
  }


.form-registro p {

    height: 40px;
    text-align: center;
    border-bottom: 1px solid;
    margin: 5px 0;

}

.form-registro a {
    color: white;
    text-decoration: none;
    font-size: 14px;

}

.form-registro a:hover {
    text-decoration: underline;
}


label{
    color: rgb(255, 255, 255);
    font-weight: 800;
    padding: 4px;
    margin-bottom: 7px;
}
/* Estilo para la etiqueta select */
select.controls {
    width: 100%;
    border: 1px solid #000000;
    margin-bottom: 15px;
    margin-top: 10px;
    padding: 10px;
    background: #252323;
    font-size: 14px;
    font-weight: bold;
    color: white;
    appearance: none; /* Oculta el estilo por defecto del select */
}

/* Estilo para las opciones del menú desplegable */
select.controls option {
    background: black;
    color: white;
}

/* Estilo para la flecha del select */
select.controls::-ms-expand {
    display: none; /* Oculta la flecha en Internet Explorer */
}

/* Estilo para el hover del select */
select.controls:hover {
    cursor: pointer;
}

/* Estilo para el focus del select */
select.controls:focus {
    outline: none; /* Elimina el contorno al hacer focus */
    border-color: #000000;
}


/* @keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */


@media (min-width: 700px) {
  .form-registro {
    margin-top: 260px;
  }
}