/* register_premium.css - VivaCity Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --primary-orange: #E8821A;
    --primary-purple: #6e44ff;
    --dark-bg: #0a0a0c;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

#heros {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #1a1a2e, #0a0a0c);
    padding: 0;
    position: relative;
    overflow: hidden;
}

#heros::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    filter: blur(150px);
    opacity: 0.15;
    top: -50px;
    left: -50px;
}

.container-general {
    display: flex;
    width: 95%; /* Un poco más ancho para aprovechar el espacio */
    max-width: 1100px;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde mucho más sutil */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.container-left {
    flex: 1.1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.container-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(10, 10, 12, 0.8));
}

.container-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 10s ease;
}

.container-general:hover .container-left img {
    transform: scale(1.1);
}

.left-overlay {
    position: absolute;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.left-overlay img.logo-main {
    width: 240px; /* Más grande para mayor impacto */
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
    margin-bottom: 30px;
}

.left-overlay p {
    color: #fff;
    font-size: 1.4rem; /* Más grande como pidió el usuario */
    font-weight: 700; /* Más grueso (bold) */
    opacity: 1; /* Máxima visibilidad */
    letter-spacing: 0.5px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Sombra para mejor lectura sobre imagen */
    margin: 0;
}

.containerLG {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.header h2 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.form_row_container {
    margin-bottom: 15px;
}

.form_row {
    display: flex;
    gap: 15px;
}

.input_container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.input_container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input_container input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(232, 130, 26, 0.1);
}

.input_container input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input_container i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
}

.help-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: -5px 0 20px;
}

.terms-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.terms-container input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.terms-container input[type="checkbox"]:checked {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.terms-container input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.terms-container label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}

.terms-container a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(232, 130, 26, 0.2);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(232, 130, 26, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cancel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    flex: 2;
}

.social-login {
    margin-top: 35px;
    text-align: center;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-divider::before, .social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.social-divider span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.no-account {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.no-account a {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
}

.field-error {
    color: #ff4d4d;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .container-left { display: none; }
    .container-general { max-width: 550px; }
}

@media (max-width: 576px) {
    .containerLG { padding: 40px 25px; }
    .form_row { flex-direction: column; gap: 0; }
    .header h1 { font-size: 2rem; }
}
