 .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5em;
            font-weight: 800;
            color: #1a1a1a;
            text-align: center;
        }

        .login-form {
            background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
            width: 100%;
            max-width: 500px;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header img {
            max-width: 80px;
            margin-bottom: 20px;
        }

        .form-header h3 {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 20px;
        }

        .icons-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .icons .submit-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        hr {
            width: 60%;
            margin: 20px auto;
            border: none;
            height: 1px;
            background: #ddd;
        }

        .form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .form-group {
            flex: 1;
            position: relative;
        }

        .form-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            z-index: 1;
        }

        .form input,
        .form select {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
        }

        .form input:focus,
        .form select:focus {
            outline: none;
            border-color: #DE3426;
            box-shadow: 0 0 0 3px rgba(222, 52, 38, 0.1);
        }

        .form input::placeholder {
            color: #9ca3af;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.875em;
            margin-top: 5px;
            display: none;
        }

        /* Phone Number Wrapper */
        .phone-wrapper {
            display: flex;
            gap: 10px;
        }

        .country-code {
            width: 40px;
            padding: 15px 10px;
            text-align: center;
        }

        .phone-number {
            flex: 1;
            padding: 15px;
        }

        /* Select Wrapper */
        .select-wrapper {
            position: relative;
        }

        .select-wrapper select {
            padding: 15px;
            appearance: none;
            cursor: pointer;
        }

        .select-wrapper::after {
            content: '▼';
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            pointer-events: none;
            color: #666;
            font-size: 0.8em;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-container input[type="checkbox"] {
            width: auto;
            padding: 0;
        }

        .forgot-password {
            color: #DE3426;
            text-decoration: none;
            font-size: 0.9em;
            text-align: right;
            display: block;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: #000;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .signup-link {
            text-align: center;
            font-size: 0.9em;
        }

        .signup-link a {
            color: #DE3426;
            text-decoration: none;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        /* Tablet Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 20px 10px;
                gap: 20px;
            }

            h2 {
                font-size: 2em;
            }

            .login-form {
                padding: 30px 20px;
            }

            .form-header h3 {
                font-size: 1.3em;
            }

            .form-row {
                flex-direction: column;
                gap: 15px;
            }

            .form-group {
                width: 100%;
            }

            .phone-wrapper {
                flex-direction: column;
                gap: 10px;
            }

            .country-code,
            .phone-number {
                width: 100%;
                padding: 15px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .container {
                padding: 15px 5px;
            }

            h2 {
                font-size: 1.8em;
            }

            .login-form {
                padding: 25px 15px;
            }

            .form-header h3 {
                font-size: 1.2em;
            }

            .icons-container {
                gap: 10px;
            }

            .icons .submit-btn {
                width: 45px;
                height: 45px;
            }
        }