:root {
    --primary: #6C63FF;
    --primary-dark: #554FD8;
    --secondary: #FF6584;
    --success: #36D399;
    --warning: #FFB347;
    --danger: #FF6B6B;
    --dark: #1A1A2E;
    --light: #F8F9FF;
    --private-gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --public-gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
    --shadow-lg: 0 30px 60px rgba(108, 99, 255, 0.25);
    --radius: 20px;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--light) 0%, rgba(108, 99, 255, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.creator-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Toggle Slider */
.vote-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.vote-toggle {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow);
    display: inline-flex;
    position: relative;
    width: 320px;
}

.toggle-option {
    flex: 1;
    padding: 12px 24px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border-radius: 40px;
    transition: var(--transition);
    z-index: 2;
    position: relative;
    color: #666;
}

.toggle-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: calc(50% - 8px);
    background: var(--private-gradient);
    border-radius: 40px;
    transition: var(--transition);
    z-index: 1;
}

.toggle-slider.public {
    transform: translateX(calc(100% + 8px));
}

/* Main Container */
.creator-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    min-height: 650px;
}

/* Left Side - Description */
.description-side {
    flex: 1;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(255, 101, 132, 0.05));
}

.description-content {
    position: relative;
    z-index: 2;
}

.description-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--primary);
}

.description-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--private-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
}

.feature-text {
    flex: 1;
    font-weight: 500;
}

.feature-text small {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 3px;
}

/* Decorative Elements */
.description-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%, var(--primary) 0%, transparent 50%);
}

/* Right Side - Form */
.form-side {
    flex: 1;
    padding: 50px 40px;
    background: white;
    position: relative;
}

.form-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--private-gradient);
    transition: var(--transition);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header .logo {
    font-size: 2rem;
    background: var(--private-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 900;
    transition: var(--transition);
}

.form-header h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Elements */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

.input-group-text {
    background: var(--private-gradient);
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 0 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-register {
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
    color: white;
    margin-top: 10px;
    background: var(--private-gradient);
}

.btn-register:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 10px;
}

.status-pending {
    background: rgba(255, 179, 71, 0.1);
    color: var(--warning);
}

.status-valid {
    background: rgba(54, 211, 153, 0.1);
    color: var(--success);
}

/* Verification Section */
.verification-section {
    background: rgba(108, 99, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 20px;
    border: 2px dashed rgba(108, 99, 255, 0.2);
}

.verification-code {
    font-family: monospace;
    font-size: 1.8rem;
    letter-spacing: 5px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary);
    margin: 20px 0;
    font-weight: bold;
    color: var(--dark);
}

.verification-message {
    background: rgba(54, 211, 153, 0.1);
    border-left: 4px solid var(--success);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 25px;
}

.login-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

.fade-out {
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 992px) {
    .creator-container {
        flex-direction: column;
    }

    .description-side {
        padding: 40px 30px;
    }

    .form-side {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .creator-container {
        margin: 20px;
    }

    .vote-toggle {
        width: 280px;
    }

    .toggle-option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .description-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .creator-container {
        margin: 0px;
    }

    .vote-toggle {
        width: 280px;
    }

    .toggle-option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .description-title {
        font-size: 1.8rem;
    }
}