*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

body{
    margin: 0;
    overflow-x: hidden;
}

.navbar{
    background-color: black;
    color: white;
    padding: 20px;
}

.nav-sec-1{
    display: flex;
    flex-direction: row;
    gap: 68%;
}

.logo{
    margin-left: 20px;
    font-size: 1.5rem;
}

.nav-options ul{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.nav-options ul{
    margin: 0;
    margin-top: 0.3rem;
}

.nav-options ul a{
    margin-right: 30px;
    width: 60px;
}

.menu{
    display: none;
}

#close-menu{
    display: none;
}

@media (max-width: 768px) {
    .logo{
        margin-left: 10px;
    }

    .nav-options{
        display: none;
    }

    .mobile-menu i {
        font-size: 1.6rem;
        margin-top: 0.2rem;
    }

    .nav-sec-1{
        gap: 75%;
    }

    .menu{
        background-color: black;
        color: white;
        height: 100%;
        width: 100%;
    }

    .menu ul{
        align-items: center;
        padding-top: 20%;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}



:root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --success: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --sponsor-bg: #f0f7ff;
            --creator-bg: #fff7f0;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fb;
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .tagline {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-bottom: 30px;
        }

        .user-type-selector {
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        select, input, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 16px;
            transition: border 0.3s;
        }

        select:focus, input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .required::after {
            content: '*';
            color: #e63946;
            margin-left: 4px;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn:hover {
            background: var(--secondary);
        }

        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 15px 25px;
            background: #4cc9f0;
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* Form sections */
        .form-section {
            display: none;
        }

        .form-section.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .active{
            display: block;
        }

        .sponsor-section {
            background-color: var(--sponsor-bg);
            border-left: 4px solid var(--primary);
            padding: 15px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .creator-section {
            background-color: var(--creator-bg);
            border-left: 4px solid #ff9e00;
            padding: 15px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .form-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .creator-section .form-title {
            color: #ff9e00;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .full-width {
            grid-column: 1 / span 2;
        }

        @media (max-width: 768px) {
            .two-column {
                grid-template-columns: 1fr;
            }
            
            .full-width {
                grid-column: 1;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /* Footer Styles */
        .footer {
            background-color: black;
            color: white;
            padding: 40px 20px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .footer-about {
            padding-right: 20px;
        }
        
        .footer-about h3 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .footer-about p {
            line-height: 1.6;
            color: #ccc;
        }
        
        .footer-links h3 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4cc9f0;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            color: #999;
        }
        
        .developer {
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-about {
                padding-right: 0;
                text-align: center;
            }
            
            .footer-links {
                text-align: center;
            }
        }