/* Estilos generales */
.container-fluid {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Fondo y estructura */
.container-restaurant {
    background-image: url("../img/chef_2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    height: auto;
}

.container-restaurant::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece el fondo */
    z-index: 1;
}

#container-form {
    z-index: 2;
    max-width: 700px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;

}

/* Título y formulario */
.register_user .title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.form-register {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.text-danger {
    color: #d9534f;
    font-size: 0.9rem;
    text-align: left;
}

button[type="submit"] {
    background-color: #6F4515;
    color: #F5F0D7;
    border: 2px solid #4A2C16;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #895B1E;
    color: #F5F0D7;
    border-color: #6F4515;
}


/* Respuestas móviles */
@media (max-width: 768px) {
    #container-form {
        padding: 20px;
    }
}

/* Estilos específicos para los fieldset */
.form-restaurante {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.form-restaurante legend {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}



