:root {
    --bg-dark: #0a0a0b;
    --card-dark: #141417;
    --orange-neon: #ffa200;
    --text-white: #ffffff;
    --text-gray: #a0a0a5;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    /* Mismo patrón simétrico de mpin y login */
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    margin: 0;
}

/* CONTENEDOR DE CENTRADO GLOBAL */
.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* TARJETA DE REGISTRO (Misma estructura .login-card) */
.register-card {
    background: var(--card-dark);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 162, 0, 0.03);
    filter: blur(45px);
    border-radius: 50%;
    pointer-events: none;
}

/* ALERTAS DE ERROR Y ÉXITO PERSONALIZADAS CYBERPUNK */
.alert-danger-custom {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.85rem;
}

.alert-success-custom {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #2ecc71;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.85rem;
}

/* ENTRADAS MODERNAS (Estilo unificado con qty-input-container) */
.form-group-modern {
    margin-bottom: 20px;
}

.form-label-modern {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.input-modern-container {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 14px;
    padding: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.input-modern-container:focus-within {
    border-color: var(--orange-neon);
    box-shadow: 0 0 12px rgba(255, 162, 0, 0.15);
}

.input-modern-container i {
    color: var(--text-gray);
    padding-left: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.input-modern {
    background: transparent !important;
    border: none !important;
    color: var(--text-white) !important;
    padding: 12px 14px;
    width: 100%;
    outline: none !important;
    font-size: 0.95rem;
}

/* Corrección de Autofill para navegadores */
.input-modern:-webkit-autofill,
.input-modern:-webkit-autofill:hover, 
.input-modern:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-white) !important;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px #000000 inset !important;
}

/* BOTÓN DE ACCIÓN (Réplica .btn-orange-action de mpin.css) */
.btn-orange-action {
    background: var(--orange-neon);
    color: #000000;
    font-weight: 900;
    padding: 18px;
    border-radius: 18px;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-orange-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 162, 0, 0.3);
}

.btn-orange-action:active {
    transform: translateY(0);
}

.btn-orange-action:disabled {
    background: #554018;
    color: #a0a0a5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ACCESORIOS TEXTUALES */
.text-orange {
    color: var(--orange-neon);
}

.text-gray {
    color: var(--text-gray);
}

.fw-black {
    font-weight: 900;
}