        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f9fafb;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hostinger-blue {
            color: #2F57EF;
        }
        
        .hostinger-bg-blue {
            background-color: #2F57EF;
        }
        
        .hostinger-border-blue {
            border-color: #2F57EF;
        }
        
        .google-btn {
            background-color: white;
            border: 1px solid #d1d5db;
            transition: all 0.2s ease;
        }
        
        .google-btn:hover {
            border-color: #2F57EF;
            box-shadow: 0 2px 8px rgba(47, 87, 239, 0.1);
        }
        
        .login-btn {
            background-color: #2F57EF;
            transition: all 0.2s ease;
        }
        
        .login-btn:hover {
            background-color: #1e46d8;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(47, 87, 239, 0.2);
        }
        
        .input-field:focus {
            border-color: #2F57EF;
            box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.1);
            outline: none;
        }
        
        .checkbox-custom {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            border: 2px solid #d1d5db;
            appearance: none;
            cursor: pointer;
            position: relative;
        }
        
        .checkbox-custom:checked {
            background-color: #2F57EF;
            border-color: #2F57EF;
        }
        
        .checkbox-custom:checked::after {
            content: "✓";
            position: absolute;
            color: white;
            font-size: 12px;
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
        }
        
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: #9ca3af;
            margin: 20px 0;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .divider span {
            padding: 0 15px;
            font-size: 14px;
        }
        
        .nav-link {
            color: #6b7280;
            transition: color 0.2s ease;
        }
        
        .nav-link:hover {
            color: #2F57EF;
        }
        
        .nav-link.active {
            color: #2F57EF;
            font-weight: 600;
        }
        
        .nav-link.active::after {
            content: '';
            display: block;
            width: 100%;
            height: 3px;
            background-color: #2F57EF;
            border-radius: 3px;
            margin-top: 4px;
        }
        
        .container-animation {
            animation: fadeInUp 0.5s ease-out;
        }

        .logo {
            width: 50%;
            height: 50%;
            margin-top: 10%;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }