/*
Theme Name: Jimmy Page Theme by deepworks
Theme URI: http://deepworks.com.ar
Author: Deepworks team.
Author URI: http://deepworks.com.ar/
Description: Template Bootstrap desarrollado a medida.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Responsive, custom pages.
Text Domain: dwmedia 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ================================================= */
/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE REGISTRO (.page-registro-unique) --- */
/* ================================================= */

/* --- Contenedor Principal y Fondo --- */
/* RESET del diseño viejo */
.page-registro-unique .bg-gray,
.page-registro-unique .row.bg-gray {
    background: transparent !important;
    box-shadow: none !important;
}

/* CONTENEDOR PRINCIPAL */
.page-registro-unique {
    width: 100%;
    padding: 40px 12px;
    background: #f5f6f7; /* Igual al fondo del login */
}

/* TITULO (igual al LOGIN) */
.page-registro-unique h1.section-title {
    text-align: center;
    font-size: 2.1rem;
    color: #21753b;  /* Azul LOGIN */
    font-weight: 600;
    margin-bottom: 8px;
}

.page-registro-unique .line-small-center::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #76c35b; /* Verde LOGIN */
    margin: 8px auto 0;
    border-radius: 3px;
}

/* SUBTITULO */
.page-registro-unique .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* CARD CENTRAL (igual al login wp) */
.single-page {
    max-width: 620px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

/* IMAGEN DESTACADA */
.single-img {
    display: block;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

/* CONTENIDO */
.the-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.the-content p {
    margin-bottom: 1rem;
}

/* FORMULARIOS (estética login) */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d6dc;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    transition: all .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #21753b;
    box-shadow: 0 0 6px rgba(29, 91, 208, 0.25);
    outline: none;
}

/* BOTONES (igual login) */
.btn,
button,
input[type="submit"] {
    display: block;
    width: 100%;
    background: #1d5bd0;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 18px;
    transition: background .2s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    background: #244a9e;
}

/* ACCORDION - limpio */
.acf-accordion {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    margin-top: 25px;
}

.acf-accordion .item .heading {
    padding: 14px 18px;
    font-weight: 600;
}

.acf-accordion .item .panel {
    padding: 15px 18px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .single-page {
        padding: 25px 20px;
    }

    .page-registro-unique h1.section-title {
        font-size: 1.8rem;
    }
}
