.content-box-gray {
    background-color: rgba(160, 162, 163, 0.8);
    border: 1px solid #a1a2aa;
    border-radius: 5px;
    margin: 0 0 25px;
    overflow: hidden;
    padding: 20px;
}

.links-login {
    text-align: center;
    text-decoration: none;
    line-height: 70%;
    color: white;
}

.title-reset {
    color: white;
}

/* Estilos para la columna de ayuda */
.help-section {
    margin-bottom: 30px;
}

.help-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    background-color: #ffffff;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.help-card-header {
    background-color: #f0f4f8;
    border-bottom: none;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.help-card-title {
    margin: 0;
    color: #363637;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 10px 10px;
}

/* Responsividad para dispositivos pequeños */
@media (max-width: 576px) {
    .help-card-header {
        padding: 10px 15px;
    }

    .help-card-title {
        font-size: 1rem;
    }
}
