/* REGISTRO - VERSIÓN ESCRITORIO */
.registro-wrapper {
    display: flex;
    height: 100vh;
}

.registro-left {
    flex: 1;
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registro-left h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.registro-left p {
    font-size: 18px;
    max-width: 400px;
}

.registro-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.registro-box {
    width: 100%;
    max-width: 400px;
}

.registro-box h2 {
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.registro-box .form-control {
    margin-bottom: 15px;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
}

.btn-yellow {
    background-color: #FEDE59;
    border: none;
    font-weight: bold;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.btn-yellow:hover {
    background-color: #e6c94e;
}

.registro-box a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.registro-box a:hover {
    text-decoration: underline;
}

/* REGISTRO - VERSIÓN MÓVIL */
.registro-mobile {
    display: none;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.registro-mobile img {
    width: 70px;
    display: block;
    margin: 0 auto 20px;
}

.registro-mobile h2 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.registro-mobile .form-control {
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.registro-mobile .btn-yellow {
    width: 100%;
}

.registro-mobile .text-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.registro-mobile .text-link a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.registro-mobile .text-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE: cambiar diseño automáticamente */
@media (max-width: 768px) {
    .registro-wrapper {
        display: none;
    }

    .registro-mobile {
        display: block;
    }
}
@media (max-width: 768px) {
    .login-mobile img,
    .registro-mobile img {
        width: 140px;
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 28px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); /* añade sombra para que destaque */
    }
}
