.body {
    font-family: poppins;
    background-color: #f2f2f2;
}

.tratamiento-datos {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #f4f7f9;
    border-radius: 8px;
    text-align: justify;
    line-height: 1.6;
}

.tratamiento-datos h3 {
    color: #0056b3;
    margin-bottom: 15px;
    text-align: center;
}

.tratamiento-datos p {
    font-weight: 400;
    color: #051f53;

}

.tratamiento-datos label {
    display: flex;
    align-items: center; 
    gap: 10px;
    cursor: pointer;
    margin-top: 15px;
    background: #fff;   
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.tratamiento-datos strong{
    padding: 10px;
}

.container-formulario { 
    width: 80%; 
    max-width: 800px;
    margin: 20px auto; 
    padding: 30px;
    /*border: 2px solid #5f616e;*/
    border-radius: 5px;
    background-color: #fFFFFF;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 15px;
}

#campos-representante {
    display: none;
}

.grupo-formulario {
    margin-bottom: 20px;
    text-align: left;
}

.grupo-formulario label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #1a365d; 
    font-family: Arial, sans-serif;
}


#epsUsuario {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #2d3748;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.texto-ayuda {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    margin: 4px 0 8px 0;
    display: block;
    line-height: 1.4;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;             
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group select {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important; 
    word-wrap: break-word !important;
    text-overflow: ellipsis;
}

.form-group select option {
    white-space: normal !important;
    max-width: 100%;
}

.contacto-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #f2f2f2;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#btnEnviar {
    background-color: #e9a53b;
    color: white;
    padding: 15px 30px;
    border: none;   
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin: 20px auto;
    display: block; 
    transition: background 0.3s ease;
}

#btnEnviar:hover:not(:disabled) {
    background-color: #003d7a;
}

#btnEnviar:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-enviar:hover {
    background-color: #e9a53b;
}

input:disabled, textarea:disabled, select:disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
}