/* Registration Page Specific Styles - FULL SCREEN DESIGN */
.register-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(139, 0, 0, 0.1) 50%, rgba(0,0,0,0.95) 100%);
}

.register-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    padding-top: 80px; /* Space for navbar */
}

/* LEFT SIDE - CAROUSEL 70% */
.register-left-side {
    width: 70%;
    height: 100%;
    position: relative;
    background: #000;
}

/* Stats Overlay Container */
.stats-overlay {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 10;
    max-width: 400px;
    transition: all 0.3s ease;
}

/* Stats Toggle */
.stats-visibility-toggle {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.stats-visibility-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--crimson);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.stats-visibility-toggle span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-arrow {
    color: var(--crimson);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.stats-visibility-toggle.collapsed .toggle-arrow {
    transform: rotate(180deg);
}

/* Stats Widgets Container - WITH SMOOTH ANIMATION */
.stats-widgets-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
    max-height: 600px;
    overflow: visible;
}

.stats-widgets-container.hidden {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    margin-bottom: 0;
}

/* Simple fade in for widgets - NO POP EFFECT */
.stats-widgets-container:not(.hidden) .stat-widget {
    animation: simpleFadeIn 0.5s ease forwards;
    opacity: 0;
}

.stats-widgets-container:not(.hidden) .stat-widget:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-widgets-container:not(.hidden) .stat-widget:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-widgets-container:not(.hidden) .stat-widget:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Individual Widget Styling - SINGLE HOVER EFFECT */
.stat-widget {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.stat-widget:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(220, 20, 60, 0.4);
}

/* Server Development Notice */
.development-notice {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-color: var(--crimson);
}

.development-notice h3 {
    color: var(--crimson);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.development-notice p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0.3rem 0;
}

.development-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.status-badge {
    background: rgba(220, 20, 60, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--crimson);
    font-weight: 600;
    text-transform: uppercase;
}

/* Discord Widget - SINGLE HOVER EFFECT */
.discord-widget {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.discord-widget:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.discord-widget h3 {
    color: #5865F2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.discord-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

#discord-online-count {
    font-weight: 600;
    color: #43B581;
    font-size: 1.1rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #43B581;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* Security Tips - TRULY FIXED HEIGHT */
.tips-widget {
    height: 160px; /* Fixed total height */
    display: flex;
    flex-direction: column;
}

.tips-widget h3 {
    color: var(--crimson);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.tips-container {
    position: relative;
    flex: 1;
    min-height: 70px;
    max-height: 70px;
    overflow: hidden;
}

.tips-content {
    position: relative;
    height: 100%;
    width: calc(100% - 60px); /* Leave space for arrows */
}

.tip-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tip-item.active {
    opacity: 1;
    visibility: visible;
}

.tip-item h4 {
    color: rgba(220, 20, 60, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.tip-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* PROPERLY POSITIONED Navigation Arrows */
.tips-nav-arrows {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    display: flex;
    gap: 4px;
    align-items: center;
}

.tip-nav-btn {
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: rgba(255, 255, 255, 0.6);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0;
}

.tip-nav-btn:hover {
    background: rgba(220, 20, 60, 0.4);
    border-color: var(--crimson);
    color: white;
}

.tip-nav-btn:active {
    transform: scale(0.9);
}

/* Tips Navigation Footer */
.tips-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(220, 20, 60, 0.15);
    height: 30px; /* Fixed height */
}

.tips-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tip-dot:hover {
    background: rgba(220, 20, 60, 0.5);
    transform: scale(1.2);
}

.tip-dot.active {
    width: 20px;
    border-radius: 10px;
    background: var(--crimson);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}

.tips-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Image Carousel - Full Height */
.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Very subtle fade to right side */
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 85%,
        rgba(0,0,0,0.1) 92%,
        rgba(0,0,0,0.4) 98%,
        #000 100%);
    pointer-events: none;
    z-index: 1;
}

/* Top gradient for navbar visibility */
.carousel-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 20, 60, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    border-radius: 8px;
    opacity: 0;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-container:hover .carousel-nav {
    opacity: 0.7;
}

.carousel-nav:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.5);
    color: white;
    opacity: 1 !important;
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

/* Loading state */
.carousel-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--crimson);
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    z-index: 3;
    text-align: center;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(220, 20, 60, 0.2);
    border-top-color: var(--crimson);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* RIGHT SIDE - REGISTRATION FORM 30% */
.register-right-side {
    width: 30%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
    padding: 2rem;
}

/* Subtle left border */
.register-right-side::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(220, 20, 60, 0.1) 20%,
        rgba(220, 20, 60, 0.2) 50%,
        rgba(220, 20, 60, 0.1) 80%,
        transparent 100%);
}

.register-form-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-title {
    font-size: 2.2rem;
    color: var(--crimson);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--glow-red);
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    padding-right: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.8);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

.validation-indicator {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.validation-indicator.checking {
    color: var(--text-secondary);
}

.validation-indicator.valid {
    color: #43B581;
    filter: drop-shadow(0 0 5px rgba(67, 181, 129, 0.5));
}

.validation-indicator.invalid {
    color: #FF0000;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.validation-icon {
    font-size: 1.1rem;
}

.checking-icon {
    animation: spin 1s linear infinite;
}

.field-message {
    margin-top: 0.4rem;
    font-size: 0.82rem;
    min-height: 18px;
    transition: all 0.3s ease;
}

.field-message.success {
    color: #43B581;
}

.field-message.error {
    color: #FF0000;
}

.field-message.info {
    color: var(--text-secondary);
}

.field-message.warning {
    color: #FFAA00;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.password-toggle:hover {
    color: var(--crimson);
}

/* CHECKBOX STYLING */
.form-agreement {
    margin: 0.5rem 0 1rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    width: 26px;
    height: 26px;
    margin-right: 12px;
    flex-shrink: 0;
}

.checkbox-custom::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.checkbox-container:hover .checkbox-custom::before {
    border-color: rgba(220, 20, 60, 0.7);
    background: rgba(220, 20, 60, 0.1);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom::before {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border-color: #DC143C;
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.6), inset 0 1px 3px rgba(255, 255, 255, 0.1);
    transform: scale(1);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
    animation: checkmarkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkmarkPop {
    0% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
    }
    40% {
        transform: rotate(45deg) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
}

.agreement-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
    display: inline-block;
}

.agreement-text a {
    color: var(--crimson);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
    font-weight: 500;
}

.agreement-text a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    opacity: 0;
}

.agreement-text a:hover {
    color: #FF1744;
    opacity: 1;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    transform: translateY(-1px);
}

.agreement-text a:hover::before {
    width: 100%;
    opacity: 1;
}

/* REGISTER BUTTON */
.btn-register {
    margin-top: 1.5rem;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #5C0000 50%, #2C0000 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-register::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 50%, #3C0000 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--crimson);
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover::after {
    opacity: 0.9;
}

.btn-register:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.6), inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(139, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 8px 28px rgba(220, 20, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

.btn-register {
    animation: buttonPulse 3s ease-in-out infinite;
}

.btn-register:hover {
    animation: none;
}

.success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: var(--crimson);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Scroll styling */
.register-right-side::-webkit-scrollbar {
    width: 6px;
}

.register-right-side::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.register-right-side::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60, 0.5);
    border-radius: 3px;
}

.register-right-side::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 20, 60, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.checkbox-container.shake {
    animation: shake 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .register-left-side {
        width: 60%;
    }
    
    .register-right-side {
        width: 40%;
    }
}

@media (max-width: 968px) {
    .register-container {
        flex-direction: column;
    }
    
    .register-left-side {
        display: none;
    }
    
    .register-right-side {
        width: 100%;
        padding: 2rem 1rem;
    }
    
    .register-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .register-form-wrapper {
        padding: 1.5rem;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .form-group input {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-register {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}