/* Estilo personalizado para la sección de Información (con list-group) */

.btn-get-register {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-register:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Menú lateral */
.list-group-item {
    border-radius: 0;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    transition: background 0.3s ease, color 0.3s ease;
    border-left: 4px solid transparent;
    border: none;
}

.list-group-item:hover {
    background-color: #f0f0f0;
    color: #28754e;
}

.list-group-item.active {
    background-color: #85b456;
    color: white;
    font-weight: bold;
    border-left: 4px solid #709a48;
}

/* Cabecera del menú lateral */
.card-header {
    background-color: #709a48 !important;
    color: white;
    text-align: center;
    font-weight: bold;
}

/* Contenido derecho */
.tab-content h2 {
    color: #28754e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tab-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.tab-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.tab-content ul li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* Formulario */
form .form-label {
    font-weight: 600;
    color: #444;
}

form input.form-control,
form textarea.form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
}

form .btn-success {
    background-color: #85b456;
    border-color: #709a48;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
}

form .btn-success:hover {
    background-color: #709a48;
    border-color: #5f8a3c;
}

/* Captcha visual */
img[alt="Captcha"] {
    border: 1px solid #ccc;
    border-radius: 4px;
}
