/* Estilos para el formulario de registro desde user_management */
.form-register {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

.form-register h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: white;
    background-color: rgb(75, 82, 99);
    border-radius: 5px;
    padding: 10px;
}

.form-register p {
    margin: 0 0 20px;
}

.form-register label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-register input, .form-register select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.helptext {
    font-size: 0.875em;
    color: #e8e8e8;
    margin-top: -10px;
}

.row {
    display: flex;
    justify-content: space-between;
}

.row > p {
    flex: 1;
    margin-right: 20px;
}

.row > p:last-child {
    margin-right: 0;
}

.form-register button {
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgb(75, 82, 99);
    background-color: rgb(75, 82, 99);
    color: white;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    height: 40px;
    width: 230px;
}