/* Selectores para el formulario de contacto */
#contact_form {
    max-width: 90%;
    margin: 10px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#contact_form h2 {
    margin: 0 0 25px 0;
    text-align: center;
    color: #333;
    font-size: 24px;
}

.form-content {
    margin-bottom: 20px;
}

.form-content label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

.form-content input,
.form-content textarea,
.form-content select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-content input:focus,
.form-content select:focus {
    outline: none;
    border-color: #0056b3;
}

.btn-enviar {
    width: 100%;
    padding: 14px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-enviar:hover {
    background: #0056b3;
}

/* Selectores para el formulario de login */
.login_imagen {
    background-image: url('../img/login_logo.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-container h2 {
    margin: 0 0 25px 0;
    text-align: center;
    color: white;
    font-size: 24px;
}

.login-container label {
    color: white;
}