/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin: 0;
}

div {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin-top: 10%;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Estilo del formulario */
form {
    display: flex;
    flex-direction: column;
}

form > div {
    margin-bottom: 15px;
    width: 90%;
    border: 2px solid #009C86;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,

select:focus {
    border-color: #007bff;
    outline: none;
}

/* Estilo del botón */
button {
    padding: 10px 15px;
    background-color: #009C86;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

button:hover {
    background-color: #212529;
    color: #009C86;
    border: 2px solid #009C86;
}


.helptext {
    width: 90%;
    margin-bottom: 5%;
}

.btn-back {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: #009C86;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 15px;
    text-align: center;

}

.btn-back:hover {
    background-color: #212529;
    color: #009C86;
    border: 2px solid #009C86;
}




@media (max-width: 572px) {
    .login-container {
        width: 80%;
    }
}

@media (max-width: 1100px) {
   .register-contrainer {
    max-width: 50%;
    width: 100%;
}
}

@media (max-width: 725px) {
   .register-contrainer {
    max-width: 100%;
    width: 100%;
}
}