
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f5f5f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

         @media (max-width: 1000px){.navbar{
                padding: 40px 50px;
        }}
        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .signup-container {
            background-color: #fff;
            border-radius: 8px;
            padding: 48px 32px;
            max-width: 440px;
            width: 100%;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        h1 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 8px;
            color: #000;
        }

        .highlight {
            background-color: #EBD96B;
            padding: 2px 8px;
            display: inline-block;
        }

        .subtitle {
            color: #666;
            font-size: 15px;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            transition: border-color 0.3s;
            background-color: #fafafa;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: #f4e04d;
            background-color: #fff;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #000;
        }

        .checkbox-label {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        .checkbox-label a {
            color: #000;
            text-decoration: underline;
        }

        .google-btn {
            width: 100%;
            background-color: #fff;
            color: #444;
            font-size: 15px;
            font-weight: 600;
            padding: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .google-btn:hover {
            border-color: #000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .google-btn:active {
            transform: scale(0.98);
        }

        .signup-btn {
            width: 100%;
            background-color: #000;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            padding: 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .signup-btn:hover {
            background-color: #333;
        }

        .signup-btn:active {
            transform: scale(0.98);
        }

        .divider {
            text-align: center;
            margin: 28px 0;
            color: #999;
            font-size: 14px;
            position: relative;
        }

        .divider::before,
        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 42%;
            height: 1px;
            background-color: #e0e0e0;
        }

        .divider::before {
            left: 0;
        }

        .divider::after {
            right: 0;
        }

        .signin-link {
            text-align: center;
            font-size: 14px;
            color: #666;
             margin-top: 15px;
        }

        .signin-link a {
            color: #000;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid #f4e04d;
            padding-bottom: 2px;
           
        }

        footer {
            background-color: #f4e04d;
            padding: 20px;
            text-align: center;
        }

        .brands {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .brand {
            font-weight: 700;
            font-size: 18px;
            color: #000;
        }

        @media (max-width: 480px) {
            .signup-container {
                padding: 36px 24px;
            }

            h1 {
                font-size: 28px;
            }
        }
    