/* CONTENEDOR GENERAL */
.register-container {
    min-height: 100vh;
}

/* IZQUIERDA */
.left-side {
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* azul a morado moderno */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* diagonal a la derecha */
    color: white;
}

.left-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.left-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

.motivational-stats .stat-icon {
    font-size: 2rem;
}

.motivational-stats .stat h3 {
    font-weight: 700;
}

/* DERECHA */
.right-side {
    position: relative;
}

/* Tarjeta del formulario */
.register-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* INPUTS y BOTONES igual que antes */
.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}
.btn-register {
    border-radius: 25px; /* más redondeado */
    padding: 16px 0;     /* más alto para presencia */
    font-size: 1.2rem;   /* texto más grande */
    font-weight: 800;    /* bold */
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* púrpura a azul */
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78,84,200,0.25);
    width: 100%;
}

.btn-register:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb); /* invierte gradiente */
    transform: translateY(-3px) scale(1.02); /* efecto “levantar” */
    box-shadow: 0 12px 30px rgba(78,84,200,0.35);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .left-side {
        display: none;
    }
}
.right-side {
    position: relative;
    overflow: visible; /* importante para que captcha se muestre */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.g-recaptcha {
    transform: scale(1); /* asegúrate que no esté escalado */
    transform-origin: top center;
}

/* Contenedor del captcha */
.captcha-wrapper {
    display: flex;
    justify-content: flex-start; /* lo puedes cambiar a center si quieres */
    align-items: center;
    background: #f0f2ff; /* fondo sutil para que destaque */
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(78,84,200,0.1);
    margin-bottom: 20px;
}

/* Ajuste del tamaño */
.captcha-wrapper .g-recaptcha {
    transform: scale(0.95); /* un poco más compacto */
    transform-origin: top left;
}
/* Logo principal */
.register-logo {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #4e54c8;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.register-logo span {
    font-size: 2.5rem; /* icono emoji tipo 🚀 o 🎓 */
}

/* Subtítulo motivacional */
.register-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.4;
}
