.register-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000000;
        padding: 0;
        overflow: hidden;
    }

    .register-wrapper {
        display: flex;
        width: 100%;
        min-height: 100vh;
    }

    /* Left Side - Form */
    .register-form-section {
        flex: 1;
        max-width: 550px;
        padding: 3rem 2rem;
        background: #0a0a0a;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }

    .form-content {
        width: 100%;
        max-width: 450px;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-icon-small {
        width: 280px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .brand-icon-small img {
        width: 220px;
        height: auto;
        object-fit: contain;
    }

    .logo-icon {
        width: 220px;
        height: auto;
        background: linear-gradient(135deg, #0d6efd, #0a58ca);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    .brand-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    .form-header {
        margin-top: 2rem;
    }

    .form-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .form-subtitle {
        color: #8b92a7;
        margin-bottom: 0;
    }

    .form-label {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-control {
        background: #1a1d23;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

    .form-control::placeholder {
        color: #6c757d;
    }

    .password-input-wrapper {
        position: relative;
    }

    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #8b92a7;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: #0d6efd;
    }

    .form-check-input {
        background-color: #1a1d23;
        border-color: #2d3238;
        cursor: pointer;
    }

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .form-check-label {
        color: #8b92a7;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .form-check-label a {
        color: #0d6efd;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .form-check-label a:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    .btn-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
    }

    .divider {
        text-align: center;
        margin: 1.5rem 0;
        position: relative;
    }

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #2d3238;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: #0a0a0a;
        padding: 0 1rem;
        color: #8b92a7;
        font-size: 0.9rem;
    }

    .social-login {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-social {
        background: #1a1d23;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-social:hover {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .login-link {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .login-link:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    /* Right Side - Image */
    .register-image-section {
        flex: 1;
        position: relative;
        display: none;
    }

    .background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(10, 88, 202, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem;
        z-index: 1;
    }

    .overlay-content {
        max-width: 600px;
        text-align: center;
        color: white;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto;
        backdrop-filter: blur(10px);
    }

    .overlay-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .overlay-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .features-list {
        text-align: left;
        display: inline-block;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: white;
    }

    .feature-item i {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Responsive */
    @media (min-width: 992px) {
        .register-image-section {
            display: block;
        }
    }

    @media (max-width: 991.98px) {
        .register-form-section {
            max-width: 100%;
            padding: 2rem 1.5rem;
        }

        .form-title {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 575.98px) {
        .register-form-section {
            padding: 1.5rem 1rem;
        }

        .brand-icon-small {
            width: 280px;
            height: auto;
        }

        .brand-icon-small img {
            width: 220px;
            height: auto;
        }

        .form-title {
            font-size: 1.5rem;
        }

        .brand-name {
            font-size: 1.25rem;
        }

        .social-login {
            flex-direction: column;
        }
    }