/* ========== AUTH & REGISTRATION PAGES - MODERN STYLES ========== */
/* Unified CSS for: Login, Login Client, Forget Password, Choose Server, Registration */

:root {
    /* Primary Colors */
    --auth-primary: #667eea;
    --auth-primary-dark: #5a67d8;
    --auth-secondary: #764ba2;
    --auth-success: #1cc88a;
    --auth-info: #4299e1;
    --auth-warning: #f6c23e;
    --auth-danger: #e74a3b;

    /* Gradients */
    --auth-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --auth-gradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --auth-gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --auth-gradient-gold: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    --auth-gradient-silver: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
    --auth-gradient-bronze: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);

    /* Shadows */
    --auth-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --auth-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --auth-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Spacing & Radius */
    --auth-radius: 20px;
    --auth-radius-sm: 12px;
    --auth-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========== LOGIN/AUTH PAGES ========== */

/* Background */
.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1c2c 0%, #2d3561 50%, #1a1c2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

/* Floating Shapes */
.auth-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    animation: float 20s ease-in-out infinite;
}

.auth-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.auth-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: -5s;
}

.auth-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Main Card */
.auth-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--auth-radius);
    box-shadow: var(--auth-shadow);
    overflow: hidden;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(10px);
    animation: slideUp 0.6s ease forwards;
}

.auth-card-small {
    max-width: 450px;
}

.auth-card-medium {
    max-width: 550px;
}

/* Card Content Layout */
.auth-content {
    display: flex;
    min-height: 550px;
}

.auth-content-single {
    min-height: auto;
}

/* Left Panel - Illustration */
.auth-left {
    flex: 1;
    background: var(--auth-gradient);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.auth-illustration {
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.auth-carousel {
    width: 100%;
    max-width: 320px;
}

.auth-carousel .carousel-item img {
    width: 100%;
    height: auto;
}

.auth-tagline {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.auth-tagline h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* Right Panel - Form */
.auth-right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-single {
    padding: 50px 40px;
}

/* Header */
.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header-icon {
    width: 70px;
    height: 70px;
    background: var(--auth-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.auth-header-icon i {
    font-size: 28px;
    color: #fff;
}

.auth-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px;
}

.auth-header p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Form Elements */
.auth-form {
    width: 100%;
}

.auth-form-group {
    margin-bottom: 20px;
    position: relative;
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.auth-form-group:nth-child(1) { animation-delay: 0.1s; }
.auth-form-group:nth-child(2) { animation-delay: 0.2s; }
.auth-form-group:nth-child(3) { animation-delay: 0.3s; }
.auth-form-group:nth-child(4) { animation-delay: 0.4s; }

.auth-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.auth-form-group label i {
    margin-right: 6px;
    color: var(--auth-primary);
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    padding-left: 48px;
    border: 2px solid #e2e8f0;
    border-radius: var(--auth-radius-sm);
    font-size: 14px;
    color: #2d3748;
    transition: var(--auth-transition);
    background: #f7fafc;
}

.auth-input:focus {
    outline: none;
    border-color: var(--auth-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.auth-input::placeholder {
    color: #a0aec0;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 16px;
    transition: var(--auth-transition);
}

.auth-form-group:focus-within .auth-input-icon {
    color: var(--auth-primary);
}

/* Button */
.auth-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--auth-gradient);
    border: none;
    border-radius: var(--auth-radius-sm);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--auth-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-btn i {
    font-size: 16px;
}

/* Server Selection Button */
.auth-server-btn {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: var(--auth-radius-sm);
    overflow: hidden;
    text-decoration: none;
    transition: var(--auth-transition);
    margin-bottom: 16px;
}

.auth-server-btn:hover {
    border-color: var(--auth-primary);
    transform: translateX(5px);
    box-shadow: var(--auth-shadow-soft);
    text-decoration: none;
}

.auth-server-left {
    padding: 18px 24px;
    background: var(--auth-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.auth-server-left img {
    width: 32px;
    height: auto;
}

.auth-server-left.server-2 {
    background: var(--auth-gradient-success);
}

.auth-server-left.server-3 {
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
}

.auth-server-right {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
}

.auth-server-right i {
    color: var(--auth-primary);
    transition: var(--auth-transition);
}

.auth-server-btn:hover .auth-server-right i {
    transform: translateX(5px);
}

/* Links */
.auth-links {
    margin-top: 25px;
    text-align: center;
    animation: slideUp 0.4s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.auth-link {
    display: inline-block;
    margin: 5px 12px;
    font-size: 13px;
    color: #718096;
    text-decoration: none;
    transition: var(--auth-transition);
}

.auth-link:hover {
    color: var(--auth-primary);
    text-decoration: none;
}

.auth-link i {
    margin-right: 5px;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    padding: 0 15px;
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
}

/* Alert Message */
.auth-alert {
    padding: 14px 18px;
    border-radius: var(--auth-radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #276749;
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.auth-alert-danger {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border: 1px solid rgba(245, 101, 101, 0.2);
}

.auth-alert-warning {
    background: rgba(237, 137, 54, 0.1);
    color: #c05621;
    border: 1px solid rgba(237, 137, 54, 0.2);
}

.auth-alert-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2b6cb0;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

/* Info Box */
.auth-info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--auth-radius-sm);
    padding: 16px 20px;
    margin-top: 20px;
}

.auth-info-box p {
    margin: 0;
    font-size: 12px;
    color: #5a67d8;
    line-height: 1.6;
    text-align: center;
}

.auth-info-box i {
    margin-right: 6px;
}

/* Mobile Logo */
.auth-mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.auth-mobile-logo img {
    width: 100px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Form Error */
.auth-form-error {
    color: var(--auth-danger);
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ========== REGISTRATION PAGE ========== */

/* Main Container */
.reg-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px;
}

/* Registration Card */
.reg-card {
    background: #fff;
    border-radius: var(--auth-radius);
    box-shadow: var(--auth-shadow-soft);
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    animation: slideUp 0.6s ease forwards;
}

/* Header */
.reg-header {
    background: var(--auth-gradient);
    padding: 30px;
    text-align: center;
    color: #fff;
}

.reg-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.reg-header p {
    margin: 10px 0 0;
    opacity: 0.9;
    font-size: 14px;
}

/* Steps Indicator */
.reg-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: var(--auth-transition);
}

.reg-step.active {
    opacity: 1;
}

.reg-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e3e6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #6c757d;
    transition: var(--auth-transition);
}

.reg-step.active .reg-step-number {
    background: var(--auth-gradient);
    color: #fff;
}

.reg-step-label {
    font-weight: 600;
    font-size: 14px;
    color: #5a5c69;
}

/* Content Area */
.reg-content {
    display: flex;
    min-height: 600px;
}

/* Form Section */
.reg-form-section {
    flex: 1;
    padding: 40px;
    border-right: 1px solid #e3e6f0;
}

.reg-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a3b45;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-form-title i {
    color: var(--auth-primary);
}

/* Form Groups */
.reg-form-group {
    margin-bottom: 20px;
}

.reg-form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #5a5c69;
    margin-bottom: 8px;
}

.reg-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e3e6f0;
    border-radius: 10px;
    font-size: 14px;
    transition: var(--auth-transition);
}

.reg-form-group input:focus {
    outline: none;
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.reg-form-group input::placeholder {
    color: #b7b9cc;
}

.reg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Package Section */
.reg-package-section {
    flex: 1.2;
    padding: 40px;
    background: #f8f9fc;
}

.reg-package-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a3b45;
    margin-bottom: 8px;
    text-align: center;
}

.reg-package-subtitle {
    font-size: 14px;
    color: #858796;
    margin-bottom: 24px;
    text-align: center;
}

/* Package Grid */
.reg-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.reg-package-grid::-webkit-scrollbar {
    width: 6px;
}

.reg-package-grid::-webkit-scrollbar-track {
    background: #e3e6f0;
    border-radius: 3px;
}

.reg-package-grid::-webkit-scrollbar-thumb {
    background: var(--auth-primary);
    border-radius: 3px;
}

/* Package Card */
.reg-package-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: var(--auth-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease forwards;
}

.reg-package-card:nth-child(1) { animation-delay: 0.05s; }
.reg-package-card:nth-child(2) { animation-delay: 0.1s; }
.reg-package-card:nth-child(3) { animation-delay: 0.15s; }
.reg-package-card:nth-child(4) { animation-delay: 0.2s; }
.reg-package-card:nth-child(5) { animation-delay: 0.25s; }
.reg-package-card:nth-child(6) { animation-delay: 0.3s; }

.reg-package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--auth-shadow-hover);
}

.reg-package-card.selected {
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.reg-package-card.selected::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--auth-success);
    font-size: 20px;
}

/* Package Tiers */
.reg-package-card.tier-lite .reg-package-badge { background: #e3e6f0; color: #5a5c69; }
.reg-package-card.tier-bronze .reg-package-badge { background: var(--auth-gradient-bronze); color: #fff; }
.reg-package-card.tier-silver .reg-package-badge { background: var(--auth-gradient-silver); color: #fff; }
.reg-package-card.tier-gold .reg-package-badge { background: var(--auth-gradient-gold); color: #fff; }
.reg-package-card.tier-special .reg-package-badge { background: var(--auth-gradient); color: #fff; }

.reg-package-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.reg-package-name {
    font-size: 18px;
    font-weight: 700;
    color: #3a3b45;
    margin-bottom: 8px;
}

.reg-package-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--auth-primary);
    margin-bottom: 4px;
}

.reg-package-price span {
    font-size: 12px;
    font-weight: 500;
    color: #858796;
}

.reg-package-features {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e3e6f0;
}

.reg-package-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #5a5c69;
    margin-bottom: 8px;
}

.reg-package-feature i {
    color: var(--auth-success);
    font-size: 10px;
}

.reg-package-feature.disabled {
    color: #d1d3e2;
    text-decoration: line-through;
}

.reg-package-feature.disabled i {
    color: #d1d3e2;
}

.reg-package-feature.highlight {
    color: var(--auth-danger);
    font-weight: 600;
}

/* Popular Badge */
.reg-package-card.popular::after {
    content: 'POPULER';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--auth-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
}

/* Submit Section */
.reg-submit-section {
    padding: 30px 40px;
    background: #fff;
    border-top: 1px solid #e3e6f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reg-selected-package {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reg-selected-label {
    font-size: 14px;
    color: #858796;
}

.reg-selected-name {
    font-size: 18px;
    font-weight: 700;
    color: #3a3b45;
}

.reg-selected-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--auth-primary);
}

.reg-submit-btn {
    background: var(--auth-gradient);
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--auth-transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.reg-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Login Link */
.reg-login-link {
    text-align: center;
    padding: 20px;
    background: #f8f9fc;
    font-size: 14px;
    color: #858796;
}

.reg-login-link a {
    color: var(--auth-primary);
    font-weight: 600;
    text-decoration: none;
}

.reg-login-link a:hover {
    text-decoration: underline;
}


/* ========== ANIMATIONS ========== */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* ========== RESPONSIVE ========== */

/* Login Pages */
@media (max-width: 768px) {
    .auth-wrapper {
        padding: 20px 15px;
    }

    .auth-card {
        border-radius: var(--auth-radius-sm);
    }

    .auth-content {
        flex-direction: column;
        min-height: auto;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 40px 30px;
    }

    .auth-single {
        padding: 40px 30px;
    }

    .auth-mobile-logo {
        display: block;
    }

    .auth-header h1 {
        font-size: 22px;
    }

    .auth-server-btn {
        flex-direction: column;
    }

    .auth-server-left {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .auth-right,
    .auth-single {
        padding: 30px 20px;
    }

    .auth-header-icon {
        width: 60px;
        height: 60px;
    }

    .auth-header-icon i {
        font-size: 24px;
    }

    .auth-input {
        padding: 12px 16px;
        padding-left: 44px;
    }

    .auth-btn {
        padding: 14px 20px;
    }
}

/* Registration Page */
@media (max-width: 992px) {
    .reg-content {
        flex-direction: column;
    }

    .reg-form-section {
        border-right: none;
        border-bottom: 1px solid #e3e6f0;
    }

    .reg-steps {
        gap: 20px;
        flex-wrap: wrap;
    }

    .reg-form-row {
        grid-template-columns: 1fr;
    }

    .reg-submit-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .reg-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .reg-container {
        padding: 20px 10px;
    }

    .reg-header {
        padding: 20px;
    }

    .reg-header h1 {
        font-size: 22px;
    }

    .reg-form-section,
    .reg-package-section {
        padding: 20px;
    }

    .reg-package-grid {
        grid-template-columns: 1fr;
    }

    .reg-step-label {
        display: none;
    }
}
